soc: renesas: Add initial support for Renesas RZ/V2N
Add initial support for Renesas RZ/V2N Signed-off-by: Hieu Nguyen <hieu.nguyen.ym@bp.renesas.com> Signed-off-by: Tien Nguyen <tien.nguyen.zg@renesas.com>
This commit is contained in:
parent
8144a6638a
commit
73c63f9ca6
8 changed files with 120 additions and 0 deletions
21
soc/renesas/rz/rzv2n/soc.c
Normal file
21
soc/renesas/rz/rzv2n/soc.c
Normal file
|
@ -0,0 +1,21 @@
|
|||
/*
|
||||
* Copyright (c) 2025 Renesas Electronics Corporation
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file
|
||||
* @brief System/hardware module for Renesas RZ/V2N Group
|
||||
*/
|
||||
|
||||
#include <zephyr/init.h>
|
||||
#include <bsp_api.h>
|
||||
|
||||
/* System core clock is set to 200 MHz after reset */
|
||||
uint32_t SystemCoreClock = 200000000;
|
||||
|
||||
void soc_early_init_hook(void)
|
||||
{
|
||||
bsp_clock_init();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue