mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-27 14:10:24 +08:00
ecf2d82159
* Synchronize the code of the rt mart branch to the master branch. * TTY device * Add lwP code from rt-smart * Add vnode in DFS, but DFS will be re-write for rt-smart * There are three libcpu for rt-smart: * arm/cortex-a, arm/aarch64 * riscv64 Co-authored-by: Rbb666 <zhangbingru@rt-thread.com> Co-authored-by: zhkag <zhkag@foxmail.com>
19 lines
474 B
C
19 lines
474 B
C
/* SPDX-License-Identifier: (GPL-2.0+ or MIT) */
|
|
/*
|
|
* Copyright (C) 2020 huangzhenwei@allwinnertech.com
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_RST_SUN8IW20_R_CCU_H_
|
|
#define _DT_BINDINGS_RST_SUN8IW20_R_CCU_H_
|
|
|
|
#define RST_R_APB0_TIMER 0
|
|
#define RST_R_APB0_TWD 1
|
|
#define RST_R_PPU 2
|
|
#define RST_R_APB0_BUS_IRRX 3
|
|
#define RST_R_AHB_BUS_RTC 4
|
|
#define RST_R_APB0_CPUCFG 5
|
|
|
|
#define RST_R_BUS_NUMBER (RST_R_APB0_CPUCFG + 1)
|
|
|
|
#endif /* _DT_BINDINGS_RST_SUN8IW20_R_CCU_H_ */
|