blob: c51432bad46dd3aaf07b0ca08ce0ef7534ca3dc5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Hardware definitions for Compaq iPAQ H3xxx Handheld Computers
3 *
4 * Copyright 2000,1 Compaq Computer Corporation.
5 *
6 * Use consistent with the GNU GPL is permitted,
7 * provided that this copyright notice is
8 * preserved in its entirety in all copies and derived works.
9 *
10 * COMPAQ COMPUTER CORPORATION MAKES NO WARRANTIES, EXPRESSED OR IMPLIED,
11 * AS TO THE USEFULNESS OR CORRECTNESS OF THIS CODE OR ITS
12 * FITNESS FOR ANY PARTICULAR PURPOSE.
13 *
14 * Author: Jamey Hicks.
15 *
16 * History:
17 *
18 * 2001-10-?? Andrew Christian Added support for iPAQ H3800
19 * and abstracted EGPIO interface.
20 *
21 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/module.h>
23#include <linux/init.h>
24#include <linux/kernel.h>
25#include <linux/tty.h>
26#include <linux/pm.h>
27#include <linux/device.h>
28#include <linux/mtd/mtd.h>
29#include <linux/mtd/partitions.h>
30#include <linux/serial_core.h>
31
32#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010033#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/mach-types.h>
35#include <asm/setup.h>
36
37#include <asm/mach/irq.h>
38#include <asm/mach/arch.h>
39#include <asm/mach/flash.h>
40#include <asm/mach/irda.h>
41#include <asm/mach/map.h>
42#include <asm/mach/serial_sa1100.h>
43
Russell Kinga09e64f2008-08-05 16:14:15 +010044#include <mach/h3600.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/h3600_gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47#include "generic.h"
48
Dmitry Artamonow607b0672009-03-15 19:14:27 +010049void (*assign_h3600_egpio)(enum ipaq_egpio_type x, int level);
50EXPORT_SYMBOL(assign_h3600_egpio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52static struct mtd_partition h3xxx_partitions[] = {
53 {
54 .name = "H3XXX boot firmware",
55 .size = 0x00040000,
56 .offset = 0,
57 .mask_flags = MTD_WRITEABLE, /* force read-only */
58 }, {
Dmitry Artamonowf110b3f2009-03-15 19:09:50 +010059 .name = "H3XXX rootfs",
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 .size = MTDPART_SIZ_FULL,
61 .offset = 0x00040000,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 }
63};
64
65static void h3xxx_set_vpp(int vpp)
66{
67 assign_h3600_egpio(IPAQ_EGPIO_VPP_ON, vpp);
68}
69
70static struct flash_platform_data h3xxx_flash_data = {
71 .map_name = "cfi_probe",
72 .set_vpp = h3xxx_set_vpp,
73 .parts = h3xxx_partitions,
74 .nr_parts = ARRAY_SIZE(h3xxx_partitions),
75};
76
77static struct resource h3xxx_flash_resource = {
78 .start = SA1100_CS0_PHYS,
79 .end = SA1100_CS0_PHYS + SZ_32M - 1,
80 .flags = IORESOURCE_MEM,
81};
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083static void h3xxx_mach_init(void)
84{
Russell King7a5b4e12009-10-06 14:55:53 +010085 sa11x0_register_mtd(&h3xxx_flash_data, &h3xxx_flash_resource, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086}
87
88/*
89 * low-level UART features
90 */
91
92static void h3600_uart_set_mctrl(struct uart_port *port, u_int mctrl)
93{
94 if (port->mapbase == _Ser3UTCR0) {
95 if (mctrl & TIOCM_RTS)
96 GPCR = GPIO_H3600_COM_RTS;
97 else
98 GPSR = GPIO_H3600_COM_RTS;
99 }
100}
101
102static u_int h3600_uart_get_mctrl(struct uart_port *port)
103{
104 u_int ret = TIOCM_CD | TIOCM_CTS | TIOCM_DSR;
105
106 if (port->mapbase == _Ser3UTCR0) {
107 int gplr = GPLR;
108 /* DCD and CTS bits are inverted in GPLR by RS232 transceiver */
109 if (gplr & GPIO_H3600_COM_DCD)
110 ret &= ~TIOCM_CD;
111 if (gplr & GPIO_H3600_COM_CTS)
112 ret &= ~TIOCM_CTS;
113 }
114
115 return ret;
116}
117
118static void h3600_uart_pm(struct uart_port *port, u_int state, u_int oldstate)
119{
120 if (port->mapbase == _Ser2UTCR0) { /* TODO: REMOVE THIS */
121 assign_h3600_egpio(IPAQ_EGPIO_IR_ON, !state);
122 } else if (port->mapbase == _Ser3UTCR0) {
123 assign_h3600_egpio(IPAQ_EGPIO_RS232_ON, !state);
124 }
125}
126
127/*
128 * Enable/Disable wake up events for this serial port.
129 * Obviously, we only support this on the normal COM port.
130 */
131static int h3600_uart_set_wake(struct uart_port *port, u_int enable)
132{
133 int err = -EINVAL;
134
135 if (port->mapbase == _Ser3UTCR0) {
136 if (enable)
137 PWER |= PWER_GPIO23 | PWER_GPIO25; /* DCD and CTS */
138 else
139 PWER &= ~(PWER_GPIO23 | PWER_GPIO25); /* DCD and CTS */
140 err = 0;
141 }
142 return err;
143}
144
145static struct sa1100_port_fns h3600_port_fns __initdata = {
146 .set_mctrl = h3600_uart_set_mctrl,
147 .get_mctrl = h3600_uart_get_mctrl,
148 .pm = h3600_uart_pm,
149 .set_wake = h3600_uart_set_wake,
150};
151
152/*
153 * helper for sa1100fb
154 */
155static void h3xxx_lcd_power(int enable)
156{
157 assign_h3600_egpio(IPAQ_EGPIO_LCD_POWER, enable);
158}
159
160static struct map_desc h3600_io_desc[] __initdata = {
Deepak Saxena92519d82005-10-28 15:19:04 +0100161 { /* static memory bank 2 CS#2 */
162 .virtual = H3600_BANK_2_VIRT,
163 .pfn = __phys_to_pfn(SA1100_CS2_PHYS),
164 .length = 0x02800000,
165 .type = MT_DEVICE
166 }, { /* static memory bank 4 CS#4 */
167 .virtual = H3600_BANK_4_VIRT,
168 .pfn = __phys_to_pfn(SA1100_CS4_PHYS),
169 .length = 0x00800000,
170 .type = MT_DEVICE
171 }, { /* EGPIO 0 CS#5 */
172 .virtual = H3600_EGPIO_VIRT,
173 .pfn = __phys_to_pfn(H3600_EGPIO_PHYS),
174 .length = 0x01000000,
175 .type = MT_DEVICE
176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177};
178
179/*
180 * Common map_io initialization
181 */
182
183static void __init h3xxx_map_io(void)
184{
185 sa1100_map_io();
186 iotable_init(h3600_io_desc, ARRAY_SIZE(h3600_io_desc));
187
188 sa1100_register_uart_fns(&h3600_port_fns);
189 sa1100_register_uart(0, 3); /* Common serial port */
190// sa1100_register_uart(1, 1); /* Microcontroller on 3100/3600 */
191
192 /* Ensure those pins are outputs and driving low */
193 PPDR |= PPC_TXD4 | PPC_SCLK | PPC_SFRM;
194 PPSR &= ~(PPC_TXD4 | PPC_SCLK | PPC_SFRM);
195
196 /* Configure suspend conditions */
197 PGSR = 0;
198 PWER = PWER_GPIO0 | PWER_RTC;
199 PCFR = PCFR_OPDE;
200 PSDR = 0;
201
202 sa1100fb_lcd_power = h3xxx_lcd_power;
203}
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/************************* H3100 *************************/
206
207#ifdef CONFIG_SA1100_H3100
208
209#define H3100_EGPIO (*(volatile unsigned int *)H3600_EGPIO_VIRT)
210static unsigned int h3100_egpio = 0;
211
212static void h3100_control_egpio(enum ipaq_egpio_type x, int setp)
213{
214 unsigned int egpio = 0;
215 long gpio = 0;
216 unsigned long flags;
217
218 switch (x) {
219 case IPAQ_EGPIO_LCD_POWER:
220 egpio |= EGPIO_H3600_LCD_ON;
221 gpio |= GPIO_H3100_LCD_3V_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 break;
223 case IPAQ_EGPIO_LCD_ENABLE:
224 break;
225 case IPAQ_EGPIO_CODEC_NRESET:
226 egpio |= EGPIO_H3600_CODEC_NRESET;
227 break;
228 case IPAQ_EGPIO_AUDIO_ON:
229 gpio |= GPIO_H3100_AUD_PWR_ON
230 | GPIO_H3100_AUD_ON;
231 break;
232 case IPAQ_EGPIO_QMUTE:
233 gpio |= GPIO_H3100_QMUTE;
234 break;
235 case IPAQ_EGPIO_OPT_NVRAM_ON:
236 egpio |= EGPIO_H3600_OPT_NVRAM_ON;
237 break;
238 case IPAQ_EGPIO_OPT_ON:
239 egpio |= EGPIO_H3600_OPT_ON;
240 break;
241 case IPAQ_EGPIO_CARD_RESET:
242 egpio |= EGPIO_H3600_CARD_RESET;
243 break;
244 case IPAQ_EGPIO_OPT_RESET:
245 egpio |= EGPIO_H3600_OPT_RESET;
246 break;
247 case IPAQ_EGPIO_IR_ON:
248 gpio |= GPIO_H3100_IR_ON;
249 break;
250 case IPAQ_EGPIO_IR_FSEL:
251 gpio |= GPIO_H3100_IR_FSEL;
252 break;
253 case IPAQ_EGPIO_RS232_ON:
254 egpio |= EGPIO_H3600_RS232_ON;
255 break;
256 case IPAQ_EGPIO_VPP_ON:
257 egpio |= EGPIO_H3600_VPP_ON;
258 break;
259 }
260
261 if (egpio || gpio) {
262 local_irq_save(flags);
263 if (setp) {
264 h3100_egpio |= egpio;
265 GPSR = gpio;
266 } else {
267 h3100_egpio &= ~egpio;
268 GPCR = gpio;
269 }
270 H3100_EGPIO = h3100_egpio;
271 local_irq_restore(flags);
272 }
273}
274
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275#define H3100_DIRECT_EGPIO (GPIO_H3100_BT_ON \
276 | GPIO_H3100_GPIO3 \
277 | GPIO_H3100_QMUTE \
278 | GPIO_H3100_LCD_3V_ON \
279 | GPIO_H3100_AUD_ON \
280 | GPIO_H3100_AUD_PWR_ON \
281 | GPIO_H3100_IR_ON \
282 | GPIO_H3100_IR_FSEL)
283
284static void __init h3100_map_io(void)
285{
286 h3xxx_map_io();
287
288 /* Initialize h3100-specific values here */
289 GPCR = 0x0fffffff; /* All outputs are set low by default */
290 GPDR = GPIO_H3600_COM_RTS | GPIO_H3600_L3_CLOCK |
291 GPIO_H3600_L3_MODE | GPIO_H3600_L3_DATA |
292 GPIO_H3600_CLK_SET1 | GPIO_H3600_CLK_SET0 |
293 H3100_DIRECT_EGPIO;
294
295 /* Older bootldrs put GPIO2-9 in alternate mode on the
296 assumption that they are used for video */
297 GAFR &= ~H3100_DIRECT_EGPIO;
298
299 H3100_EGPIO = h3100_egpio;
Dmitry Artamonow607b0672009-03-15 19:14:27 +0100300 assign_h3600_egpio = h3100_control_egpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
Russell Kinga5d176a2009-10-06 14:22:23 +0100303/*
304 * This turns the IRDA power on or off on the Compaq H3100
305 */
306static int h3100_irda_set_power(struct device *dev, unsigned int state)
307{
308 assign_h3100_egpio(IPAQ_EGPIO_IR_ON, state);
309
310 return 0;
311}
312
313static void h3100_irda_set_speed(struct device *dev, unsigned int speed)
314{
315 assign_h3100_egpio(IPAQ_EGPIO_IR_FSEL, !(speed < 4000000));
316}
317
318static struct irda_platform_data h3100_irda_data = {
319 .set_power = h3100_irda_set_power,
320 .set_speed = h3100_irda_set_speed,
321};
322
Russell King898e8102009-10-06 14:19:44 +0100323static void h3100_mach_init(void)
324{
325 h3xxx_mach_init();
Russell Kinga5d176a2009-10-06 14:22:23 +0100326 sa11x0_register_irda(&h3100_irda_data);
Russell King898e8102009-10-06 14:19:44 +0100327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329MACHINE_START(H3100, "Compaq iPAQ H3100")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100330 .phys_io = 0x80000000,
331 .io_pg_offst = ((0xf8000000) >> 18) & 0xfffc,
332 .boot_params = 0xc0000100,
333 .map_io = h3100_map_io,
334 .init_irq = sa1100_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .timer = &sa1100_timer,
Russell King898e8102009-10-06 14:19:44 +0100336 .init_machine = h3100_mach_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337MACHINE_END
338
339#endif /* CONFIG_SA1100_H3100 */
340
341/************************* H3600 *************************/
342
343#ifdef CONFIG_SA1100_H3600
344
345#define H3600_EGPIO (*(volatile unsigned int *)H3600_EGPIO_VIRT)
346static unsigned int h3600_egpio = EGPIO_H3600_RS232_ON;
347
348static void h3600_control_egpio(enum ipaq_egpio_type x, int setp)
349{
350 unsigned int egpio = 0;
351 unsigned long flags;
352
353 switch (x) {
354 case IPAQ_EGPIO_LCD_POWER:
355 egpio |= EGPIO_H3600_LCD_ON |
356 EGPIO_H3600_LCD_PCI |
357 EGPIO_H3600_LCD_5V_ON |
358 EGPIO_H3600_LVDD_ON;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 break;
360 case IPAQ_EGPIO_LCD_ENABLE:
361 break;
362 case IPAQ_EGPIO_CODEC_NRESET:
363 egpio |= EGPIO_H3600_CODEC_NRESET;
364 break;
365 case IPAQ_EGPIO_AUDIO_ON:
366 egpio |= EGPIO_H3600_AUD_AMP_ON |
367 EGPIO_H3600_AUD_PWR_ON;
368 break;
369 case IPAQ_EGPIO_QMUTE:
370 egpio |= EGPIO_H3600_QMUTE;
371 break;
372 case IPAQ_EGPIO_OPT_NVRAM_ON:
373 egpio |= EGPIO_H3600_OPT_NVRAM_ON;
374 break;
375 case IPAQ_EGPIO_OPT_ON:
376 egpio |= EGPIO_H3600_OPT_ON;
377 break;
378 case IPAQ_EGPIO_CARD_RESET:
379 egpio |= EGPIO_H3600_CARD_RESET;
380 break;
381 case IPAQ_EGPIO_OPT_RESET:
382 egpio |= EGPIO_H3600_OPT_RESET;
383 break;
384 case IPAQ_EGPIO_IR_ON:
385 egpio |= EGPIO_H3600_IR_ON;
386 break;
387 case IPAQ_EGPIO_IR_FSEL:
388 egpio |= EGPIO_H3600_IR_FSEL;
389 break;
390 case IPAQ_EGPIO_RS232_ON:
391 egpio |= EGPIO_H3600_RS232_ON;
392 break;
393 case IPAQ_EGPIO_VPP_ON:
394 egpio |= EGPIO_H3600_VPP_ON;
395 break;
396 }
397
398 if (egpio) {
399 local_irq_save(flags);
400 if (setp)
401 h3600_egpio |= egpio;
402 else
403 h3600_egpio &= ~egpio;
404 H3600_EGPIO = h3600_egpio;
405 local_irq_restore(flags);
406 }
407}
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static void __init h3600_map_io(void)
410{
411 h3xxx_map_io();
412
413 /* Initialize h3600-specific values here */
414
415 GPCR = 0x0fffffff; /* All outputs are set low by default */
416 GPDR = GPIO_H3600_COM_RTS | GPIO_H3600_L3_CLOCK |
417 GPIO_H3600_L3_MODE | GPIO_H3600_L3_DATA |
418 GPIO_H3600_CLK_SET1 | GPIO_H3600_CLK_SET0 |
419 GPIO_LDD15 | GPIO_LDD14 | GPIO_LDD13 | GPIO_LDD12 |
420 GPIO_LDD11 | GPIO_LDD10 | GPIO_LDD9 | GPIO_LDD8;
421
422 H3600_EGPIO = h3600_egpio; /* Maintains across sleep? */
Dmitry Artamonow607b0672009-03-15 19:14:27 +0100423 assign_h3600_egpio = h3600_control_egpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Russell Kinga5d176a2009-10-06 14:22:23 +0100426/*
427 * This turns the IRDA power on or off on the Compaq H3600
428 */
429static int h3600_irda_set_power(struct device *dev, unsigned int state)
430{
431 assign_h3600_egpio(IPAQ_EGPIO_IR_ON, state);
432 return 0;
433}
434
435static void h3600_irda_set_speed(struct device *dev, unsigned int speed)
436{
437 assign_h3600_egpio(IPAQ_EGPIO_IR_FSEL, !(speed < 4000000));
438}
439
440static struct irda_platform_data h3600_irda_data = {
441 .set_power = h3600_irda_set_power,
442 .set_speed = h3600_irda_set_speed,
443};
444
Russell King898e8102009-10-06 14:19:44 +0100445static void h3600_mach_init(void)
446{
447 h3xxx_mach_init();
Russell Kinga5d176a2009-10-06 14:22:23 +0100448 sa11x0_register_irda(&h3600_irda_data);
Russell King898e8102009-10-06 14:19:44 +0100449}
450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451MACHINE_START(H3600, "Compaq iPAQ H3600")
Russell Kinge9dea0c2005-07-03 17:38:58 +0100452 .phys_io = 0x80000000,
453 .io_pg_offst = ((0xf8000000) >> 18) & 0xfffc,
454 .boot_params = 0xc0000100,
455 .map_io = h3600_map_io,
456 .init_irq = sa1100_init_irq,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 .timer = &sa1100_timer,
Russell King898e8102009-10-06 14:19:44 +0100458 .init_machine = h3600_mach_init,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459MACHINE_END
460
461#endif /* CONFIG_SA1100_H3600 */
462