diff options
author | Magnus Damm <damm@igel.co.jp> | 2009-05-28 11:51:51 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-06-01 15:44:49 +0900 |
commit | eb9b9b56eed280e65a9e194aaeb50a5a75111859 (patch) | |
tree | 3c40c0d798b9079dfeda037f0e9680dc2808b449 /arch/sh/include/asm/processor.h | |
parent | 5582b0648de6248c67c0b47fa170e5fb15ab4bf1 (diff) |
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>
Diffstat (limited to 'arch/sh/include/asm/processor.h')
-rw-r--r-- | arch/sh/include/asm/processor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/sh/include/asm/processor.h b/arch/sh/include/asm/processor.h index 005c962c8b1c..fb67482e47eb 100644 --- a/arch/sh/include/asm/processor.h +++ b/arch/sh/include/asm/processor.h @@ -94,6 +94,10 @@ extern struct pt_regs fake_swapper_regs; const char *get_cpu_subtype(struct sh_cpuinfo *c); extern const struct seq_operations cpuinfo_op; +/* processor boot mode configuration */ +int generic_mode_pins(void); +int test_mode_pin(int pin); + #ifdef CONFIG_VSYSCALL int vsyscall_init(void); #else |