diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:36:39 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-16 18:36:39 -0300 |
commit | ab4c84b189fc450ac5edee0d4461b0c1bf0c86c6 (patch) | |
tree | 7ed45c785e64fb0f40ec4a20d02f03c9a07e851b /linux/arch/sh/boards/mach-migor | |
parent | 944b8fa4c78bec5e481f59eaa0c02d2928be6309 (diff) | |
download | mediapointer-dvb-s2-ab4c84b189fc450ac5edee0d4461b0c1bf0c86c6.tar.gz mediapointer-dvb-s2-ab4c84b189fc450ac5edee0d4461b0c1bf0c86c6.tar.bz2 |
backport some files that are maintained elsewhere
From: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/arch/sh/boards/mach-migor')
-rw-r--r-- | linux/arch/sh/boards/mach-migor/setup.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/linux/arch/sh/boards/mach-migor/setup.c b/linux/arch/sh/boards/mach-migor/setup.c index 1ee1de0bc..6ed401cd3 100644 --- a/linux/arch/sh/boards/mach-migor/setup.c +++ b/linux/arch/sh/boards/mach-migor/setup.c @@ -584,3 +584,22 @@ static int __init migor_devices_setup(void) return platform_add_devices(migor_devices, ARRAY_SIZE(migor_devices)); } __initcall(migor_devices_setup); + +/* Return the board specific boot mode pin configuration */ +static int migor_mode_pins(void) +{ + /* MD0=1, MD1=1, MD2=0: Clock Mode 3 + * MD3=0: 16-bit Area0 Bus Width + * MD5=1: Little Endian + * TSTMD=1, MD8=0: Test Mode Disabled + */ + return MODE_PIN0 | MODE_PIN1 | MODE_PIN5; +} + +/* + * The Machine Vector + */ +static struct sh_machine_vector mv_migor __initmv = { + .mv_name = "Migo-R", + .mv_mode_pins = migor_mode_pins, +}; |