
This is sufficient to allow boot of the Lager board with a console without boards-lager.c compiled into the kernel. This is an example of a minimal but still useful initialisation of the board using DT as much as possible. As such it is the same as the boot of Lager that can be achieved without a board file. The intention of adding this file is to facilitate further work to allow board specific devices to be initialised via DT. Acked-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
15 lines
344 B
C
15 lines
344 B
C
#ifndef __ASM_R8A7790_H__
|
|
#define __ASM_R8A7790_H__
|
|
|
|
void r8a7790_add_standard_devices(void);
|
|
void r8a7790_add_dt_devices(void);
|
|
void r8a7790_clock_init(void);
|
|
void r8a7790_pinmux_init(void);
|
|
void r8a7790_init_delay(void);
|
|
void r8a7790_timer_init(void);
|
|
|
|
#define MD(nr) BIT(nr)
|
|
u32 r8a7790_read_mode_pins(void);
|
|
|
|
#endif /* __ASM_R8A7790_H__ */
|