Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 295783
b: refs/heads/master
c: 237caf9
h: refs/heads/master
i:
  295781: 91251ec
  295779: 66325ec
  295775: fb66185
v: v3
  • Loading branch information
Magnus Damm authored and Rafael J. Wysocki committed Mar 12, 2012
1 parent d6b0cfd commit 00997ff
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 24 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 84c36ffd7c580e1a63d7284e318670b082260118
refs/heads/master: 237caf9e6b0c26168acfa7eed0b0afe463918d4f
25 changes: 2 additions & 23 deletions trunk/arch/arm/mach-shmobile/board-g3evm.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
#include <mach/common.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/mach/time.h>

/*
Expand Down Expand Up @@ -246,27 +245,6 @@ static struct platform_device *g3evm_devices[] __initdata = {
&irda_device,
};

static struct map_desc g3evm_io_desc[] __initdata = {
/* create a 1:1 entity map for 0xe6xxxxxx
* used by CPGA, INTC and PFC.
*/
{
.virtual = 0xe6000000,
.pfn = __phys_to_pfn(0xe6000000),
.length = 256 << 20,
.type = MT_DEVICE_NONSHARED
},
};

static void __init g3evm_map_io(void)
{
iotable_init(g3evm_io_desc, ARRAY_SIZE(g3evm_io_desc));

/* setup early devices and console here as well */
sh7367_add_early_devices();
shmobile_setup_console();
}

static void __init g3evm_init(void)
{
sh7367_pinmux_init();
Expand Down Expand Up @@ -365,7 +343,8 @@ static struct sys_timer g3evm_timer = {
};

MACHINE_START(G3EVM, "g3evm")
.map_io = g3evm_map_io,
.map_io = sh7367_map_io,
.init_early = sh7367_add_early_devices,
.init_irq = sh7367_init_irq,
.handle_irq = shmobile_handle_irq_intc,
.init_machine = g3evm_init,
Expand Down
1 change: 1 addition & 0 deletions trunk/arch/arm/mach-shmobile/include/mach/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ extern void (*shmobile_cpuidle_modes[])(void);
extern void (*shmobile_cpuidle_setup)(struct cpuidle_driver *drv);

extern void sh7367_init_irq(void);
extern void sh7367_map_io(void);
extern void sh7367_add_early_devices(void);
extern void sh7367_add_standard_devices(void);
extern void sh7367_clock_init(void);
Expand Down
22 changes: 22 additions & 0 deletions trunk/arch/arm/mach-shmobile/setup-sh7367.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,27 @@
#include <linux/serial_sci.h>
#include <linux/sh_timer.h>
#include <mach/hardware.h>
#include <mach/common.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>

static struct map_desc sh7367_io_desc[] __initdata = {
/* create a 1:1 entity map for 0xe6xxxxxx
* used by CPGA, INTC and PFC.
*/
{
.virtual = 0xe6000000,
.pfn = __phys_to_pfn(0xe6000000),
.length = 256 << 20,
.type = MT_DEVICE_NONSHARED
},
};

void __init sh7367_map_io(void)
{
iotable_init(sh7367_io_desc, ARRAY_SIZE(sh7367_io_desc));
}

/* SCIFA0 */
static struct plat_sci_port scif0_platform_data = {
Expand Down Expand Up @@ -445,4 +464,7 @@ void __init sh7367_add_early_devices(void)

early_platform_add_devices(sh7367_early_devices,
ARRAY_SIZE(sh7367_early_devices));

/* setup early console here as well */
shmobile_setup_console();
}

0 comments on commit 00997ff

Please sign in to comment.