2 * Hardware definitions for Compaq iPAQ H3xxx Handheld Computers
4 * Copyright 2000,1 Compaq Computer Corporation.
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.
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.
14 * Author: Jamey Hicks.
18 * 2001-10-?? Andrew Christian Added support for iPAQ H3800
19 * and abstracted EGPIO interface.
22 #include <linux/config.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/kernel.h>
26 #include <linux/tty.h>
28 #include <linux/device.h>
29 #include <linux/mtd/mtd.h>
30 #include <linux/mtd/partitions.h>
31 #include <linux/serial_core.h>
34 #include <asm/hardware.h>
35 #include <asm/mach-types.h>
36 #include <asm/setup.h>
38 #include <asm/mach/irq.h>
39 #include <asm/mach/arch.h>
40 #include <asm/mach/flash.h>
41 #include <asm/mach/irda.h>
42 #include <asm/mach/map.h>
43 #include <asm/mach/serial_sa1100.h>
45 #include <asm/arch/h3600.h>
47 #if defined (CONFIG_SA1100_H3600) || defined (CONFIG_SA1100_H3100)
48 #include <asm/arch/h3600_gpio.h>
51 #ifdef CONFIG_SA1100_H3800
52 #include <asm/arch/h3600_asic.h>
57 struct ipaq_model_ops ipaq_model_ops
;
58 EXPORT_SYMBOL(ipaq_model_ops
);
60 static struct mtd_partition h3xxx_partitions
[] = {
62 .name
= "H3XXX boot firmware",
65 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
67 #ifdef CONFIG_MTD_2PARTS_IPAQ
68 .name
= "H3XXX root jffs2",
69 .size
= MTDPART_SIZ_FULL
,
72 .name
= "H3XXX kernel",
76 .name
= "H3XXX params",
80 #ifdef CONFIG_JFFS2_FS
81 .name
= "H3XXX root jffs2",
82 .size
= MTDPART_SIZ_FULL
,
85 .name
= "H3XXX initrd",
89 .name
= "H3XXX root cramfs",
93 .name
= "H3XXX usr cramfs",
97 .name
= "H3XXX usr local",
98 .size
= MTDPART_SIZ_FULL
,
105 static void h3xxx_set_vpp(int vpp
)
107 assign_h3600_egpio(IPAQ_EGPIO_VPP_ON
, vpp
);
110 static struct flash_platform_data h3xxx_flash_data
= {
111 .map_name
= "cfi_probe",
112 .set_vpp
= h3xxx_set_vpp
,
113 .parts
= h3xxx_partitions
,
114 .nr_parts
= ARRAY_SIZE(h3xxx_partitions
),
117 static struct resource h3xxx_flash_resource
= {
118 .start
= SA1100_CS0_PHYS
,
119 .end
= SA1100_CS0_PHYS
+ SZ_32M
- 1,
120 .flags
= IORESOURCE_MEM
,
124 * This turns the IRDA power on or off on the Compaq H3600
126 static int h3600_irda_set_power(struct device
*dev
, unsigned int state
)
128 assign_h3600_egpio( IPAQ_EGPIO_IR_ON
, state
);
133 static void h3600_irda_set_speed(struct device
*dev
, unsigned int speed
)
135 if (speed
< 4000000) {
136 clr_h3600_egpio(IPAQ_EGPIO_IR_FSEL
);
138 set_h3600_egpio(IPAQ_EGPIO_IR_FSEL
);
142 static struct irda_platform_data h3600_irda_data
= {
143 .set_power
= h3600_irda_set_power
,
144 .set_speed
= h3600_irda_set_speed
,
147 static void h3xxx_mach_init(void)
149 sa11x0_set_flash_data(&h3xxx_flash_data
, &h3xxx_flash_resource
, 1);
150 sa11x0_set_irda_data(&h3600_irda_data
);
154 * low-level UART features
157 static void h3600_uart_set_mctrl(struct uart_port
*port
, u_int mctrl
)
159 if (port
->mapbase
== _Ser3UTCR0
) {
160 if (mctrl
& TIOCM_RTS
)
161 GPCR
= GPIO_H3600_COM_RTS
;
163 GPSR
= GPIO_H3600_COM_RTS
;
167 static u_int
h3600_uart_get_mctrl(struct uart_port
*port
)
169 u_int ret
= TIOCM_CD
| TIOCM_CTS
| TIOCM_DSR
;
171 if (port
->mapbase
== _Ser3UTCR0
) {
173 /* DCD and CTS bits are inverted in GPLR by RS232 transceiver */
174 if (gplr
& GPIO_H3600_COM_DCD
)
176 if (gplr
& GPIO_H3600_COM_CTS
)
183 static void h3600_uart_pm(struct uart_port
*port
, u_int state
, u_int oldstate
)
185 if (port
->mapbase
== _Ser2UTCR0
) { /* TODO: REMOVE THIS */
186 assign_h3600_egpio(IPAQ_EGPIO_IR_ON
, !state
);
187 } else if (port
->mapbase
== _Ser3UTCR0
) {
188 assign_h3600_egpio(IPAQ_EGPIO_RS232_ON
, !state
);
193 * Enable/Disable wake up events for this serial port.
194 * Obviously, we only support this on the normal COM port.
196 static int h3600_uart_set_wake(struct uart_port
*port
, u_int enable
)
200 if (port
->mapbase
== _Ser3UTCR0
) {
202 PWER
|= PWER_GPIO23
| PWER_GPIO25
; /* DCD and CTS */
204 PWER
&= ~(PWER_GPIO23
| PWER_GPIO25
); /* DCD and CTS */
210 static struct sa1100_port_fns h3600_port_fns __initdata
= {
211 .set_mctrl
= h3600_uart_set_mctrl
,
212 .get_mctrl
= h3600_uart_get_mctrl
,
214 .set_wake
= h3600_uart_set_wake
,
218 * helper for sa1100fb
220 static void h3xxx_lcd_power(int enable
)
222 assign_h3600_egpio(IPAQ_EGPIO_LCD_POWER
, enable
);
225 static struct map_desc h3600_io_desc
[] __initdata
= {
226 /* virtual physical length type */
227 { H3600_BANK_2_VIRT
, SA1100_CS2_PHYS
, 0x02800000, MT_DEVICE
}, /* static memory bank 2 CS#2 */
228 { H3600_BANK_4_VIRT
, SA1100_CS4_PHYS
, 0x00800000, MT_DEVICE
}, /* static memory bank 4 CS#4 */
229 { H3600_EGPIO_VIRT
, H3600_EGPIO_PHYS
, 0x01000000, MT_DEVICE
}, /* EGPIO 0 CS#5 */
233 * Common map_io initialization
236 static void __init
h3xxx_map_io(void)
239 iotable_init(h3600_io_desc
, ARRAY_SIZE(h3600_io_desc
));
241 sa1100_register_uart_fns(&h3600_port_fns
);
242 sa1100_register_uart(0, 3); /* Common serial port */
243 // sa1100_register_uart(1, 1); /* Microcontroller on 3100/3600 */
245 /* Ensure those pins are outputs and driving low */
246 PPDR
|= PPC_TXD4
| PPC_SCLK
| PPC_SFRM
;
247 PPSR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
249 /* Configure suspend conditions */
251 PWER
= PWER_GPIO0
| PWER_RTC
;
255 sa1100fb_lcd_power
= h3xxx_lcd_power
;
258 static __inline__
void do_blank(int setp
)
260 if (ipaq_model_ops
.blank_callback
)
261 ipaq_model_ops
.blank_callback(1-setp
);
264 /************************* H3100 *************************/
266 #ifdef CONFIG_SA1100_H3100
268 #define H3100_EGPIO (*(volatile unsigned int *)H3600_EGPIO_VIRT)
269 static unsigned int h3100_egpio
= 0;
271 static void h3100_control_egpio(enum ipaq_egpio_type x
, int setp
)
273 unsigned int egpio
= 0;
278 case IPAQ_EGPIO_LCD_POWER
:
279 egpio
|= EGPIO_H3600_LCD_ON
;
280 gpio
|= GPIO_H3100_LCD_3V_ON
;
283 case IPAQ_EGPIO_LCD_ENABLE
:
285 case IPAQ_EGPIO_CODEC_NRESET
:
286 egpio
|= EGPIO_H3600_CODEC_NRESET
;
288 case IPAQ_EGPIO_AUDIO_ON
:
289 gpio
|= GPIO_H3100_AUD_PWR_ON
292 case IPAQ_EGPIO_QMUTE
:
293 gpio
|= GPIO_H3100_QMUTE
;
295 case IPAQ_EGPIO_OPT_NVRAM_ON
:
296 egpio
|= EGPIO_H3600_OPT_NVRAM_ON
;
298 case IPAQ_EGPIO_OPT_ON
:
299 egpio
|= EGPIO_H3600_OPT_ON
;
301 case IPAQ_EGPIO_CARD_RESET
:
302 egpio
|= EGPIO_H3600_CARD_RESET
;
304 case IPAQ_EGPIO_OPT_RESET
:
305 egpio
|= EGPIO_H3600_OPT_RESET
;
307 case IPAQ_EGPIO_IR_ON
:
308 gpio
|= GPIO_H3100_IR_ON
;
310 case IPAQ_EGPIO_IR_FSEL
:
311 gpio
|= GPIO_H3100_IR_FSEL
;
313 case IPAQ_EGPIO_RS232_ON
:
314 egpio
|= EGPIO_H3600_RS232_ON
;
316 case IPAQ_EGPIO_VPP_ON
:
317 egpio
|= EGPIO_H3600_VPP_ON
;
322 local_irq_save(flags
);
324 h3100_egpio
|= egpio
;
327 h3100_egpio
&= ~egpio
;
330 H3100_EGPIO
= h3100_egpio
;
331 local_irq_restore(flags
);
335 static unsigned long h3100_read_egpio(void)
340 static int h3100_pm_callback(int req
)
342 if (ipaq_model_ops
.pm_callback_aux
)
343 return ipaq_model_ops
.pm_callback_aux(req
);
347 static struct ipaq_model_ops h3100_model_ops __initdata
= {
348 .generic_name
= "3100",
349 .control
= h3100_control_egpio
,
350 .read
= h3100_read_egpio
,
351 .pm_callback
= h3100_pm_callback
354 #define H3100_DIRECT_EGPIO (GPIO_H3100_BT_ON \
357 | GPIO_H3100_LCD_3V_ON \
358 | GPIO_H3100_AUD_ON \
359 | GPIO_H3100_AUD_PWR_ON \
361 | GPIO_H3100_IR_FSEL)
363 static void __init
h3100_map_io(void)
367 /* Initialize h3100-specific values here */
368 GPCR
= 0x0fffffff; /* All outputs are set low by default */
369 GPDR
= GPIO_H3600_COM_RTS
| GPIO_H3600_L3_CLOCK
|
370 GPIO_H3600_L3_MODE
| GPIO_H3600_L3_DATA
|
371 GPIO_H3600_CLK_SET1
| GPIO_H3600_CLK_SET0
|
374 /* Older bootldrs put GPIO2-9 in alternate mode on the
375 assumption that they are used for video */
376 GAFR
&= ~H3100_DIRECT_EGPIO
;
378 H3100_EGPIO
= h3100_egpio
;
379 ipaq_model_ops
= h3100_model_ops
;
382 MACHINE_START(H3100
, "Compaq iPAQ H3100")
383 BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
384 BOOT_PARAMS(0xc0000100)
386 INITIRQ(sa1100_init_irq
)
387 .timer
= &sa1100_timer
,
388 .init_machine
= h3xxx_mach_init
,
391 #endif /* CONFIG_SA1100_H3100 */
393 /************************* H3600 *************************/
395 #ifdef CONFIG_SA1100_H3600
397 #define H3600_EGPIO (*(volatile unsigned int *)H3600_EGPIO_VIRT)
398 static unsigned int h3600_egpio
= EGPIO_H3600_RS232_ON
;
400 static void h3600_control_egpio(enum ipaq_egpio_type x
, int setp
)
402 unsigned int egpio
= 0;
406 case IPAQ_EGPIO_LCD_POWER
:
407 egpio
|= EGPIO_H3600_LCD_ON
|
408 EGPIO_H3600_LCD_PCI
|
409 EGPIO_H3600_LCD_5V_ON
|
413 case IPAQ_EGPIO_LCD_ENABLE
:
415 case IPAQ_EGPIO_CODEC_NRESET
:
416 egpio
|= EGPIO_H3600_CODEC_NRESET
;
418 case IPAQ_EGPIO_AUDIO_ON
:
419 egpio
|= EGPIO_H3600_AUD_AMP_ON
|
420 EGPIO_H3600_AUD_PWR_ON
;
422 case IPAQ_EGPIO_QMUTE
:
423 egpio
|= EGPIO_H3600_QMUTE
;
425 case IPAQ_EGPIO_OPT_NVRAM_ON
:
426 egpio
|= EGPIO_H3600_OPT_NVRAM_ON
;
428 case IPAQ_EGPIO_OPT_ON
:
429 egpio
|= EGPIO_H3600_OPT_ON
;
431 case IPAQ_EGPIO_CARD_RESET
:
432 egpio
|= EGPIO_H3600_CARD_RESET
;
434 case IPAQ_EGPIO_OPT_RESET
:
435 egpio
|= EGPIO_H3600_OPT_RESET
;
437 case IPAQ_EGPIO_IR_ON
:
438 egpio
|= EGPIO_H3600_IR_ON
;
440 case IPAQ_EGPIO_IR_FSEL
:
441 egpio
|= EGPIO_H3600_IR_FSEL
;
443 case IPAQ_EGPIO_RS232_ON
:
444 egpio
|= EGPIO_H3600_RS232_ON
;
446 case IPAQ_EGPIO_VPP_ON
:
447 egpio
|= EGPIO_H3600_VPP_ON
;
452 local_irq_save(flags
);
454 h3600_egpio
|= egpio
;
456 h3600_egpio
&= ~egpio
;
457 H3600_EGPIO
= h3600_egpio
;
458 local_irq_restore(flags
);
462 static unsigned long h3600_read_egpio(void)
467 static int h3600_pm_callback(int req
)
469 if (ipaq_model_ops
.pm_callback_aux
)
470 return ipaq_model_ops
.pm_callback_aux(req
);
474 static struct ipaq_model_ops h3600_model_ops __initdata
= {
475 .generic_name
= "3600",
476 .control
= h3600_control_egpio
,
477 .read
= h3600_read_egpio
,
478 .pm_callback
= h3600_pm_callback
481 static void __init
h3600_map_io(void)
485 /* Initialize h3600-specific values here */
487 GPCR
= 0x0fffffff; /* All outputs are set low by default */
488 GPDR
= GPIO_H3600_COM_RTS
| GPIO_H3600_L3_CLOCK
|
489 GPIO_H3600_L3_MODE
| GPIO_H3600_L3_DATA
|
490 GPIO_H3600_CLK_SET1
| GPIO_H3600_CLK_SET0
|
491 GPIO_LDD15
| GPIO_LDD14
| GPIO_LDD13
| GPIO_LDD12
|
492 GPIO_LDD11
| GPIO_LDD10
| GPIO_LDD9
| GPIO_LDD8
;
494 H3600_EGPIO
= h3600_egpio
; /* Maintains across sleep? */
495 ipaq_model_ops
= h3600_model_ops
;
498 MACHINE_START(H3600
, "Compaq iPAQ H3600")
499 BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
500 BOOT_PARAMS(0xc0000100)
502 INITIRQ(sa1100_init_irq
)
503 .timer
= &sa1100_timer
,
504 .init_machine
= h3xxx_mach_init
,
507 #endif /* CONFIG_SA1100_H3600 */
509 #ifdef CONFIG_SA1100_H3800
511 #define SET_ASIC1(x) \
512 do {if (setp) { H3800_ASIC1_GPIO_OUT |= (x); } else { H3800_ASIC1_GPIO_OUT &= ~(x); }} while(0)
514 #define SET_ASIC2(x) \
515 do {if (setp) { H3800_ASIC2_GPIOPIOD |= (x); } else { H3800_ASIC2_GPIOPIOD &= ~(x); }} while(0)
517 #define CLEAR_ASIC1(x) \
518 do {if (setp) { H3800_ASIC1_GPIO_OUT &= ~(x); } else { H3800_ASIC1_GPIO_OUT |= (x); }} while(0)
520 #define CLEAR_ASIC2(x) \
521 do {if (setp) { H3800_ASIC2_GPIOPIOD &= ~(x); } else { H3800_ASIC2_GPIOPIOD |= (x); }} while(0)
525 On screen enable, we get
527 h3800_video_power_on(1)
528 LCD controller starts
529 h3800_video_lcd_enable(1)
531 On screen disable, we get
533 h3800_video_lcd_enable(0)
535 h3800_video_power_on(0)
539 static void h3800_video_power_on(int setp
)
542 H3800_ASIC1_GPIO_OUT
|= GPIO1_LCD_ON
;
544 H3800_ASIC1_GPIO_OUT
|= GPIO1_VGL_ON
;
546 H3800_ASIC1_GPIO_OUT
|= GPIO1_VGH_ON
;
548 H3800_ASIC1_GPIO_OUT
|= GPIO1_LCD_5V_ON
;
552 H3800_ASIC1_GPIO_OUT
&= ~GPIO1_LCD_5V_ON
;
554 H3800_ASIC1_GPIO_OUT
&= ~GPIO1_VGL_ON
;
556 H3800_ASIC1_GPIO_OUT
&= ~GPIO1_VGH_ON
;
558 H3800_ASIC1_GPIO_OUT
&= ~GPIO1_LCD_ON
;
562 static void h3800_video_lcd_enable(int setp
)
565 msleep(17); // Wait one from before turning on
566 H3800_ASIC1_GPIO_OUT
|= GPIO1_LCD_PCI
;
568 H3800_ASIC1_GPIO_OUT
&= ~GPIO1_LCD_PCI
;
569 msleep(30); // Wait before turning off
574 static void h3800_control_egpio(enum ipaq_egpio_type x
, int setp
)
577 case IPAQ_EGPIO_LCD_POWER
:
578 h3800_video_power_on(setp
);
580 case IPAQ_EGPIO_LCD_ENABLE
:
581 h3800_video_lcd_enable(setp
);
583 case IPAQ_EGPIO_CODEC_NRESET
:
584 case IPAQ_EGPIO_AUDIO_ON
:
585 case IPAQ_EGPIO_QMUTE
:
586 printk("%s: error - should not be called\n", __FUNCTION__
);
588 case IPAQ_EGPIO_OPT_NVRAM_ON
:
589 SET_ASIC2(GPIO2_OPT_ON_NVRAM
);
591 case IPAQ_EGPIO_OPT_ON
:
592 SET_ASIC2(GPIO2_OPT_ON
);
594 case IPAQ_EGPIO_CARD_RESET
:
595 SET_ASIC2(GPIO2_OPT_PCM_RESET
);
597 case IPAQ_EGPIO_OPT_RESET
:
598 SET_ASIC2(GPIO2_OPT_RESET
);
600 case IPAQ_EGPIO_IR_ON
:
601 CLEAR_ASIC1(GPIO1_IR_ON_N
);
603 case IPAQ_EGPIO_IR_FSEL
:
605 case IPAQ_EGPIO_RS232_ON
:
606 SET_ASIC1(GPIO1_RS232_ON
);
608 case IPAQ_EGPIO_VPP_ON
:
609 H3800_ASIC2_FlashWP_VPP_ON
= setp
;
614 static unsigned long h3800_read_egpio(void)
616 return H3800_ASIC1_GPIO_OUT
| (H3800_ASIC2_GPIOPIOD
<< 16);
619 /* We need to fix ASIC2 GPIO over suspend/resume. At the moment,
620 it doesn't appear that ASIC1 GPIO has the same problem */
622 static int h3800_pm_callback(int req
)
624 static u16 asic1_data
;
625 static u16 asic2_data
;
628 printk("%s %d\n", __FUNCTION__
, req
);
632 MSC2
= (MSC2
& 0x0000ffff) | 0xE4510000; /* Set MSC2 correctly */
634 H3800_ASIC2_GPIOPIOD
= asic2_data
;
635 H3800_ASIC2_GPIODIR
= GPIO2_PEN_IRQ
641 H3800_ASIC1_GPIO_OUT
= asic1_data
;
643 if (ipaq_model_ops
.pm_callback_aux
)
644 result
= ipaq_model_ops
.pm_callback_aux(req
);
648 if (ipaq_model_ops
.pm_callback_aux
&&
649 ((result
= ipaq_model_ops
.pm_callback_aux(req
)) != 0))
652 asic1_data
= H3800_ASIC1_GPIO_OUT
;
653 asic2_data
= H3800_ASIC2_GPIOPIOD
;
656 printk("%s: unrecognized PM callback\n", __FUNCTION__
);
662 static struct ipaq_model_ops h3800_model_ops __initdata
= {
663 .generic_name
= "3800",
664 .control
= h3800_control_egpio
,
665 .read
= h3800_read_egpio
,
666 .pm_callback
= h3800_pm_callback
669 #define MAX_ASIC_ISR_LOOPS 20
671 /* The order of these is important - see #include <asm/arch/irqs.h> */
672 static u32 kpio_irq_mask
[] = {
684 static u32 gpio_irq_mask
[] = {
692 static void h3800_IRQ_demux(unsigned int irq
, struct irqdesc
*desc
, struct pt_regs
*regs
)
696 if (0) printk("%s: interrupt received\n", __FUNCTION__
);
698 desc
->chip
->ack(irq
);
700 for (i
= 0; i
< MAX_ASIC_ISR_LOOPS
&& (GPLR
& GPIO_H3800_ASIC
); i
++) {
705 irq
= H3800_ASIC2_KPIINTFLAG
;
706 if (0) printk("%s KPIO 0x%08X\n", __FUNCTION__
, irq
);
707 for (j
= 0; j
< H3800_KPIO_IRQ_COUNT
; j
++)
708 if (irq
& kpio_irq_mask
[j
])
709 do_edge_IRQ(H3800_KPIO_IRQ_COUNT
+ j
, irq_desc
+ H3800_KPIO_IRQ_COUNT
+ j
, regs
);
712 irq
= H3800_ASIC2_GPIINTFLAG
;
713 if (0) printk("%s GPIO 0x%08X\n", __FUNCTION__
, irq
);
714 for (j
= 0; j
< H3800_GPIO_IRQ_COUNT
; j
++)
715 if (irq
& gpio_irq_mask
[j
])
716 do_edge_IRQ(H3800_GPIO_IRQ_COUNT
+ j
, irq_desc
+ H3800_GPIO_IRQ_COUNT
+ j
, regs
);
719 if (i
>= MAX_ASIC_ISR_LOOPS
)
720 printk("%s: interrupt processing overrun\n", __FUNCTION__
);
722 /* For level-based interrupts */
723 desc
->chip
->unmask(irq
);
727 static struct irqaction h3800_irq
= {
728 .name
= "h3800_asic",
729 .handler
= h3800_IRQ_demux
,
730 .flags
= SA_INTERRUPT
,
733 u32 kpio_int_shadow
= 0;
736 /* mask_ack <- IRQ is first serviced.
737 mask <- IRQ is disabled.
738 unmask <- IRQ is enabled
740 The INTCLR registers are poorly documented. I believe that writing
741 a "1" to the register clears the specific interrupt, but the documentation
742 indicates writing a "0" clears the interrupt. In any case, they shouldn't
743 be read (that's the INTFLAG register)
746 static void h3800_mask_ack_kpio_irq(unsigned int irq
)
748 u32 mask
= kpio_irq_mask
[irq
- H3800_KPIO_IRQ_START
];
749 kpio_int_shadow
&= ~mask
;
750 H3800_ASIC2_KPIINTSTAT
= kpio_int_shadow
;
751 H3800_ASIC2_KPIINTCLR
= mask
;
754 static void h3800_mask_kpio_irq(unsigned int irq
)
756 u32 mask
= kpio_irq_mask
[irq
- H3800_KPIO_IRQ_START
];
757 kpio_int_shadow
&= ~mask
;
758 H3800_ASIC2_KPIINTSTAT
= kpio_int_shadow
;
761 static void h3800_unmask_kpio_irq(unsigned int irq
)
763 u32 mask
= kpio_irq_mask
[irq
- H3800_KPIO_IRQ_START
];
764 kpio_int_shadow
|= mask
;
765 H3800_ASIC2_KPIINTSTAT
= kpio_int_shadow
;
768 static void h3800_mask_ack_gpio_irq(unsigned int irq
)
770 u32 mask
= gpio_irq_mask
[irq
- H3800_GPIO_IRQ_START
];
771 H3800_ASIC2_GPIINTSTAT
&= ~mask
;
772 H3800_ASIC2_GPIINTCLR
= mask
;
775 static void h3800_mask_gpio_irq(unsigned int irq
)
777 u32 mask
= gpio_irq_mask
[irq
- H3800_GPIO_IRQ_START
];
778 H3800_ASIC2_GPIINTSTAT
&= ~mask
;
781 static void h3800_unmask_gpio_irq(unsigned int irq
)
783 u32 mask
= gpio_irq_mask
[irq
- H3800_GPIO_IRQ_START
];
784 H3800_ASIC2_GPIINTSTAT
|= mask
;
787 static void __init
h3800_init_irq(void)
791 /* Initialize standard IRQs */
794 /* Disable all IRQs and set up clock */
795 H3800_ASIC2_KPIINTSTAT
= 0; /* Disable all interrupts */
796 H3800_ASIC2_GPIINTSTAT
= 0;
798 H3800_ASIC2_KPIINTCLR
= 0; /* Clear all KPIO interrupts */
799 H3800_ASIC2_GPIINTCLR
= 0; /* Clear all GPIO interrupts */
801 // H3800_ASIC2_KPIINTCLR = 0xffff; /* Clear all KPIO interrupts */
802 // H3800_ASIC2_GPIINTCLR = 0xffff; /* Clear all GPIO interrupts */
804 H3800_ASIC2_CLOCK_Enable
|= ASIC2_CLOCK_EX0
; /* 32 kHZ crystal on */
805 H3800_ASIC2_INTR_ClockPrescale
|= ASIC2_INTCPS_SET
;
806 H3800_ASIC2_INTR_ClockPrescale
= ASIC2_INTCPS_CPS(0x0e) | ASIC2_INTCPS_SET
;
807 H3800_ASIC2_INTR_TimerSet
= 1;
810 for (i
= 0; i
< H3800_KPIO_IRQ_COUNT
; i
++) {
811 int irq
= i
+ H3800_KPIO_IRQ_START
;
812 irq_desc
[irq
].valid
= 1;
813 irq_desc
[irq
].probe_ok
= 1;
814 set_irq_chip(irq
, &h3800_kpio_irqchip
);
817 for (i
= 0; i
< H3800_GPIO_IRQ_COUNT
; i
++) {
818 int irq
= i
+ H3800_GPIO_IRQ_START
;
819 irq_desc
[irq
].valid
= 1;
820 irq_desc
[irq
].probe_ok
= 1;
821 set_irq_chip(irq
, &h3800_gpio_irqchip
);
824 set_irq_type(IRQ_GPIO_H3800_ASIC
, IRQT_RISING
);
825 set_irq_chained_handler(IRQ_GPIO_H3800_ASIC
, &h3800_IRQ_demux
);
829 #define ASIC1_OUTPUTS 0x7fff /* First 15 bits are used */
831 static void __init
h3800_map_io(void)
835 /* Add wakeup on AC plug/unplug */
838 /* Initialize h3800-specific values here */
839 GPCR
= 0x0fffffff; /* All outputs are set low by default */
840 GAFR
= GPIO_H3800_CLK_OUT
|
841 GPIO_LDD15
| GPIO_LDD14
| GPIO_LDD13
| GPIO_LDD12
|
842 GPIO_LDD11
| GPIO_LDD10
| GPIO_LDD9
| GPIO_LDD8
;
843 GPDR
= GPIO_H3800_CLK_OUT
|
844 GPIO_H3600_COM_RTS
| GPIO_H3600_L3_CLOCK
|
845 GPIO_H3600_L3_MODE
| GPIO_H3600_L3_DATA
|
846 GPIO_LDD15
| GPIO_LDD14
| GPIO_LDD13
| GPIO_LDD12
|
847 GPIO_LDD11
| GPIO_LDD10
| GPIO_LDD9
| GPIO_LDD8
;
848 TUCR
= TUCR_3_6864MHz
; /* Seems to be used only for the Bluetooth UART */
850 /* Fix the memory bus */
851 MSC2
= (MSC2
& 0x0000ffff) | 0xE4510000;
854 H3800_ASIC1_GPIO_DIR
= ASIC1_OUTPUTS
; /* All outputs */
855 H3800_ASIC1_GPIO_MASK
= ASIC1_OUTPUTS
; /* No interrupts */
856 H3800_ASIC1_GPIO_SLEEP_MASK
= ASIC1_OUTPUTS
;
857 H3800_ASIC1_GPIO_SLEEP_DIR
= ASIC1_OUTPUTS
;
858 H3800_ASIC1_GPIO_SLEEP_OUT
= GPIO1_EAR_ON_N
;
859 H3800_ASIC1_GPIO_BATT_FAULT_DIR
= ASIC1_OUTPUTS
;
860 H3800_ASIC1_GPIO_BATT_FAULT_OUT
= GPIO1_EAR_ON_N
;
862 H3800_ASIC1_GPIO_OUT
= GPIO1_IR_ON_N
867 H3800_ASIC2_GPIOPIOD
= GPIO2_IN_Y1_N
| GPIO2_IN_X1_N
;
868 H3800_ASIC2_GPOBFSTAT
= GPIO2_IN_Y1_N
| GPIO2_IN_X1_N
;
870 H3800_ASIC2_GPIODIR
= GPIO2_PEN_IRQ
876 /* TODO : Set sleep states & battery fault states */
878 /* Clear VPP Enable */
879 H3800_ASIC2_FlashWP_VPP_ON
= 0;
880 ipaq_model_ops
= h3800_model_ops
;
883 MACHINE_START(H3800
, "Compaq iPAQ H3800")
884 BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
885 BOOT_PARAMS(0xc0000100)
887 INITIRQ(h3800_init_irq
)
888 .timer
= &sa1100_timer
,
889 .init_machine
= h3xxx_mach_init
,
892 #endif /* CONFIG_SA1100_H3800 */