b437c52c29
Using the augmented reset driver for the Versatile family, we can move the reset handling for the Integrator out of the machine. We add a "syscon" attribute to the core module, and access the syscon registers using this handle. We need to select SYSCON, POWER, POWER_RESET and POWER_RESET_VERSATILE in order for the restart functionality to always be available on all systems (it should not be optional). Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
7 lines
258 B
C
7 lines
258 B
C
#include <linux/reboot.h>
|
|
#include <linux/amba/serial.h>
|
|
extern struct amba_pl010_data ap_uart_data;
|
|
void integrator_init_early(void);
|
|
int integrator_init(bool is_cp);
|
|
void integrator_reserve(void);
|
|
void integrator_init_sysfs(struct device *parent, u32 id);
|