2 * arch/arm/mach-ep93xx/ts72xx.c
3 * Technologic Systems TS72xx SBC support.
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
16 #include <linux/sched.h>
17 #include <linux/interrupt.h>
18 #include <linux/ioport.h>
19 #include <linux/mtd/physmap.h>
20 #include <linux/platform_device.h>
21 #include <linux/m48t86.h>
23 #include <linux/i2c.h>
24 #include <mach/hardware.h>
25 #include <asm/mach-types.h>
26 #include <asm/mach/arch.h>
27 #include <asm/mach/map.h>
29 static struct map_desc ts72xx_io_desc
[] __initdata
= {
31 .virtual = TS72XX_MODEL_VIRT_BASE
,
32 .pfn
= __phys_to_pfn(TS72XX_MODEL_PHYS_BASE
),
33 .length
= TS72XX_MODEL_SIZE
,
36 .virtual = TS72XX_OPTIONS_VIRT_BASE
,
37 .pfn
= __phys_to_pfn(TS72XX_OPTIONS_PHYS_BASE
),
38 .length
= TS72XX_OPTIONS_SIZE
,
41 .virtual = TS72XX_OPTIONS2_VIRT_BASE
,
42 .pfn
= __phys_to_pfn(TS72XX_OPTIONS2_PHYS_BASE
),
43 .length
= TS72XX_OPTIONS2_SIZE
,
46 .virtual = TS72XX_RTC_INDEX_VIRT_BASE
,
47 .pfn
= __phys_to_pfn(TS72XX_RTC_INDEX_PHYS_BASE
),
48 .length
= TS72XX_RTC_INDEX_SIZE
,
51 .virtual = TS72XX_RTC_DATA_VIRT_BASE
,
52 .pfn
= __phys_to_pfn(TS72XX_RTC_DATA_PHYS_BASE
),
53 .length
= TS72XX_RTC_DATA_SIZE
,
58 static struct map_desc ts72xx_nand_io_desc
[] __initdata
= {
60 .virtual = TS72XX_NAND_DATA_VIRT_BASE
,
61 .pfn
= __phys_to_pfn(TS72XX_NAND1_DATA_PHYS_BASE
),
62 .length
= TS72XX_NAND_DATA_SIZE
,
65 .virtual = TS72XX_NAND_CONTROL_VIRT_BASE
,
66 .pfn
= __phys_to_pfn(TS72XX_NAND1_CONTROL_PHYS_BASE
),
67 .length
= TS72XX_NAND_CONTROL_SIZE
,
70 .virtual = TS72XX_NAND_BUSY_VIRT_BASE
,
71 .pfn
= __phys_to_pfn(TS72XX_NAND1_BUSY_PHYS_BASE
),
72 .length
= TS72XX_NAND_BUSY_SIZE
,
77 static struct map_desc ts72xx_alternate_nand_io_desc
[] __initdata
= {
79 .virtual = TS72XX_NAND_DATA_VIRT_BASE
,
80 .pfn
= __phys_to_pfn(TS72XX_NAND2_DATA_PHYS_BASE
),
81 .length
= TS72XX_NAND_DATA_SIZE
,
84 .virtual = TS72XX_NAND_CONTROL_VIRT_BASE
,
85 .pfn
= __phys_to_pfn(TS72XX_NAND2_CONTROL_PHYS_BASE
),
86 .length
= TS72XX_NAND_CONTROL_SIZE
,
89 .virtual = TS72XX_NAND_BUSY_VIRT_BASE
,
90 .pfn
= __phys_to_pfn(TS72XX_NAND2_BUSY_PHYS_BASE
),
91 .length
= TS72XX_NAND_BUSY_SIZE
,
96 static void __init
ts72xx_map_io(void)
99 iotable_init(ts72xx_io_desc
, ARRAY_SIZE(ts72xx_io_desc
));
102 * The TS-7200 has NOR flash, the other models have NAND flash.
104 if (!board_is_ts7200()) {
105 if (is_ts9420_installed()) {
106 iotable_init(ts72xx_alternate_nand_io_desc
,
107 ARRAY_SIZE(ts72xx_alternate_nand_io_desc
));
109 iotable_init(ts72xx_nand_io_desc
,
110 ARRAY_SIZE(ts72xx_nand_io_desc
));
115 /*************************************************************************
116 * NOR flash (TS-7200 only)
117 *************************************************************************/
118 static struct physmap_flash_data ts72xx_flash_data
= {
122 static struct resource ts72xx_flash_resource
= {
123 .start
= EP93XX_CS6_PHYS_BASE
,
124 .end
= EP93XX_CS6_PHYS_BASE
+ SZ_16M
- 1,
125 .flags
= IORESOURCE_MEM
,
128 static struct platform_device ts72xx_flash
= {
129 .name
= "physmap-flash",
132 .platform_data
= &ts72xx_flash_data
,
135 .resource
= &ts72xx_flash_resource
,
138 static void __init
ts72xx_register_flash(void)
140 if (board_is_ts7200())
141 platform_device_register(&ts72xx_flash
);
144 static unsigned char ts72xx_rtc_readbyte(unsigned long addr
)
146 __raw_writeb(addr
, TS72XX_RTC_INDEX_VIRT_BASE
);
147 return __raw_readb(TS72XX_RTC_DATA_VIRT_BASE
);
150 static void ts72xx_rtc_writebyte(unsigned char value
, unsigned long addr
)
152 __raw_writeb(addr
, TS72XX_RTC_INDEX_VIRT_BASE
);
153 __raw_writeb(value
, TS72XX_RTC_DATA_VIRT_BASE
);
156 static struct m48t86_ops ts72xx_rtc_ops
= {
157 .readbyte
= ts72xx_rtc_readbyte
,
158 .writebyte
= ts72xx_rtc_writebyte
,
161 static struct platform_device ts72xx_rtc_device
= {
162 .name
= "rtc-m48t86",
165 .platform_data
= &ts72xx_rtc_ops
,
170 static struct ep93xx_eth_data ts72xx_eth_data
= {
174 static void __init
ts72xx_init_machine(void)
176 ep93xx_init_devices();
177 ts72xx_register_flash();
178 platform_device_register(&ts72xx_rtc_device
);
180 ep93xx_register_eth(&ts72xx_eth_data
, 1);
183 MACHINE_START(TS72XX
, "Technologic Systems TS-72xx SBC")
184 /* Maintainer: Lennert Buytenhek <buytenh@wantstofly.org> */
185 .phys_io
= EP93XX_APB_PHYS_BASE
,
186 .io_pg_offst
= ((EP93XX_APB_VIRT_BASE
) >> 18) & 0xfffc,
187 .boot_params
= EP93XX_SDCE3_PHYS_BASE_SYNC
+ 0x100,
188 .map_io
= ts72xx_map_io
,
189 .init_irq
= ep93xx_init_irq
,
190 .timer
= &ep93xx_timer
,
191 .init_machine
= ts72xx_init_machine
,