sh: boot word / mode pin support V2
Add mode pin support for the SuperH architecture V2. With this patch applied the board code can add their own function to export the cpu mode pin configuration. In most cases this will be a constant bitmap, but boards that allow reading this from a register can instead read out the pin state from hardware. The code warns if a pin is tested but no board specific mode pin function has been provided. Signed-off-by: Magnus Damm <damm@igel.co.jp> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Этот коммит содержится в:

коммит произвёл
Paul Mundt

родитель
5582b0648d
Коммит
eb9b9b56ee
@@ -129,6 +129,7 @@ void __init sh_mv_setup(void)
|
||||
mv_set(ioport_map);
|
||||
mv_set(ioport_unmap);
|
||||
mv_set(irq_demux);
|
||||
mv_set(mode_pins);
|
||||
|
||||
if (!sh_mv.mv_nr_irqs)
|
||||
sh_mv.mv_nr_irqs = NR_IRQS;
|
||||
|
@@ -420,6 +420,18 @@ void __init setup_arch(char **cmdline_p)
|
||||
#endif
|
||||
}
|
||||
|
||||
/* processor boot mode configuration */
|
||||
int generic_mode_pins(void)
|
||||
{
|
||||
pr_warning("generic_mode_pins(): missing mode pin configuration\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
int test_mode_pin(int pin)
|
||||
{
|
||||
return sh_mv.mv_mode_pins() & (1 << pin);
|
||||
}
|
||||
|
||||
static const char *cpu_name[] = {
|
||||
[CPU_SH7201] = "SH7201",
|
||||
[CPU_SH7203] = "SH7203", [CPU_SH7263] = "SH7263",
|
||||
|
Ссылка в новой задаче
Block a user