blob: 73df32aac4c4f7260ba98d187fafae7ed104e10f [file] [log] [blame]
Tony Lindgren9b6553c2006-04-02 17:46:30 +01001/*
2 * linux/arch/arm/mach-omap1/board-ams-delta.c
3 *
4 * Modified from board-generic.c
5 *
6 * Board specific inits for the Amstrad E3 (codename Delta) videophone
7 *
8 * Copyright (C) 2006 Jonathan McDowell <noodles@earth.li>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/kernel.h>
16#include <linux/init.h>
17#include <linux/platform_device.h>
18
19#include <asm/hardware.h>
20#include <asm/mach-types.h>
21#include <asm/mach/arch.h>
22#include <asm/mach/map.h>
23
24#include <asm/arch/board-ams-delta.h>
25#include <asm/arch/gpio.h>
26#include <asm/arch/mux.h>
27#include <asm/arch/usb.h>
28#include <asm/arch/board.h>
29#include <asm/arch/common.h>
30
31static u8 ams_delta_latch1_reg;
32static u16 ams_delta_latch2_reg;
33
34void ams_delta_latch1_write(u8 mask, u8 value)
35{
36 ams_delta_latch1_reg &= ~mask;
37 ams_delta_latch1_reg |= value;
38 *(volatile __u8 *) AMS_DELTA_LATCH1_VIRT = ams_delta_latch1_reg;
39}
40
41void ams_delta_latch2_write(u16 mask, u16 value)
42{
43 ams_delta_latch2_reg &= ~mask;
44 ams_delta_latch2_reg |= value;
45 *(volatile __u16 *) AMS_DELTA_LATCH2_VIRT = ams_delta_latch2_reg;
46}
47
48static void __init ams_delta_init_irq(void)
49{
50 omap1_init_common_hw();
51 omap_init_irq();
52 omap_gpio_init();
53}
54
55static struct map_desc ams_delta_io_desc[] __initdata = {
56 // AMS_DELTA_LATCH1
57 {
58 .virtual = AMS_DELTA_LATCH1_VIRT,
59 .pfn = __phys_to_pfn(AMS_DELTA_LATCH1_PHYS),
60 .length = 0x01000000,
61 .type = MT_DEVICE
62 },
63 // AMS_DELTA_LATCH2
64 {
65 .virtual = AMS_DELTA_LATCH2_VIRT,
66 .pfn = __phys_to_pfn(AMS_DELTA_LATCH2_PHYS),
67 .length = 0x01000000,
68 .type = MT_DEVICE
69 },
70 // AMS_DELTA_MODEM
71 {
72 .virtual = AMS_DELTA_MODEM_VIRT,
73 .pfn = __phys_to_pfn(AMS_DELTA_MODEM_PHYS),
74 .length = 0x01000000,
75 .type = MT_DEVICE
76 }
77};
78
79static struct omap_uart_config ams_delta_uart_config __initdata = {
80 .enabled_uarts = 1,
81};
82
83static struct omap_board_config_kernel ams_delta_config[] = {
84 { OMAP_TAG_UART, &ams_delta_uart_config },
85};
86
Jonathan McDowell9becde72006-06-23 02:05:33 -070087static struct platform_device ams_delta_led_device = {
88 .name = "ams-delta-led",
89 .id = -1
90};
91
92static struct platform_device *ams_delta_devices[] __initdata = {
93 &ams_delta_led_device,
94};
95
Tony Lindgren9b6553c2006-04-02 17:46:30 +010096static void __init ams_delta_init(void)
97{
98 iotable_init(ams_delta_io_desc, ARRAY_SIZE(ams_delta_io_desc));
99
100 omap_board_config = ams_delta_config;
101 omap_board_config_size = ARRAY_SIZE(ams_delta_config);
102 omap_serial_init();
103
104 /* Clear latch2 (NAND, LCD, modem enable) */
105 ams_delta_latch2_write(~0, 0);
Jonathan McDowell9becde72006-06-23 02:05:33 -0700106
107 platform_add_devices(ams_delta_devices, ARRAY_SIZE(ams_delta_devices));
Tony Lindgren9b6553c2006-04-02 17:46:30 +0100108}
109
110static void __init ams_delta_map_io(void)
111{
112 omap1_map_common_io();
113}
114
115MACHINE_START(AMS_DELTA, "Amstrad E3 (Delta)")
116 /* Maintainer: Jonathan McDowell <noodles@earth.li> */
117 .phys_io = 0xfff00000,
118 .io_pg_offst = ((0xfef00000) >> 18) & 0xfffc,
119 .boot_params = 0x10000100,
120 .map_io = ams_delta_map_io,
121 .init_irq = ams_delta_init_irq,
122 .init_machine = ams_delta_init,
123 .timer = &omap_timer,
124MACHINE_END
125
126EXPORT_SYMBOL(ams_delta_latch1_write);
127EXPORT_SYMBOL(ams_delta_latch2_write);