2 * Support for Compaq iPAQ H3100 and H3600 handheld computers (common code)
4 * Copyright (c) 2000,1 Compaq Computer Corporation. (Author: Jamey Hicks)
5 * Copyright (c) 2009 Dmitry Artamonow <mad_soft@inbox.ru>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
13 #include <linux/kernel.h>
14 #include <linux/gpio.h>
15 #include <linux/gpio_keys.h>
16 #include <linux/input.h>
17 #include <linux/mfd/htc-egpio.h>
18 #include <linux/mtd/mtd.h>
19 #include <linux/mtd/partitions.h>
20 #include <linux/platform_data/sa11x0-serial.h>
21 #include <linux/platform_device.h>
22 #include <linux/serial_core.h>
24 #include <asm/mach/flash.h>
25 #include <asm/mach/map.h>
27 #include <mach/h3xxx.h>
31 void h3xxx_init_gpio(struct gpio_default_state
*s
, size_t n
)
34 const char *name
= s
->name
;
39 err
= gpio_request(s
->gpio
, name
);
41 printk(KERN_ERR
"gpio%u: unable to request: %d\n",
46 err
= gpio_direction_output(s
->gpio
, s
->mode
);
48 err
= gpio_direction_input(s
->gpio
);
51 printk(KERN_ERR
"gpio%u: unable to set direction: %d\n",
65 static struct mtd_partition h3xxx_partitions
[] = {
67 .name
= "H3XXX boot firmware",
70 .mask_flags
= MTD_WRITEABLE
, /* force read-only */
72 .name
= "H3XXX rootfs",
73 .size
= MTDPART_SIZ_FULL
,
78 static void h3xxx_set_vpp(int vpp
)
80 gpio_set_value(H3XXX_EGPIO_VPP_ON
, vpp
);
83 static int h3xxx_flash_init(void)
85 int err
= gpio_request(H3XXX_EGPIO_VPP_ON
, "Flash Vpp");
87 pr_err("%s: can't request H3XXX_EGPIO_VPP_ON\n", __func__
);
91 err
= gpio_direction_output(H3XXX_EGPIO_VPP_ON
, 0);
93 gpio_free(H3XXX_EGPIO_VPP_ON
);
98 static void h3xxx_flash_exit(void)
100 gpio_free(H3XXX_EGPIO_VPP_ON
);
103 static struct flash_platform_data h3xxx_flash_data
= {
104 .map_name
= "cfi_probe",
105 .set_vpp
= h3xxx_set_vpp
,
106 .init
= h3xxx_flash_init
,
107 .exit
= h3xxx_flash_exit
,
108 .parts
= h3xxx_partitions
,
109 .nr_parts
= ARRAY_SIZE(h3xxx_partitions
),
112 static struct resource h3xxx_flash_resource
=
113 DEFINE_RES_MEM(SA1100_CS0_PHYS
, SZ_32M
);
119 static void h3xxx_uart_set_mctrl(struct uart_port
*port
, u_int mctrl
)
121 if (port
->mapbase
== _Ser3UTCR0
) {
122 gpio_set_value(H3XXX_GPIO_COM_RTS
, !(mctrl
& TIOCM_RTS
));
126 static u_int
h3xxx_uart_get_mctrl(struct uart_port
*port
)
128 u_int ret
= TIOCM_CD
| TIOCM_CTS
| TIOCM_DSR
;
130 if (port
->mapbase
== _Ser3UTCR0
) {
132 * DCD and CTS bits are inverted in GPLR by RS232 transceiver
134 if (gpio_get_value(H3XXX_GPIO_COM_DCD
))
136 if (gpio_get_value(H3XXX_GPIO_COM_CTS
))
143 static void h3xxx_uart_pm(struct uart_port
*port
, u_int state
, u_int oldstate
)
145 if (port
->mapbase
== _Ser3UTCR0
) {
146 if (!gpio_request(H3XXX_EGPIO_RS232_ON
, "RS232 transceiver")) {
147 gpio_direction_output(H3XXX_EGPIO_RS232_ON
, !state
);
148 gpio_free(H3XXX_EGPIO_RS232_ON
);
150 pr_err("%s: can't request H3XXX_EGPIO_RS232_ON\n",
157 * Enable/Disable wake up events for this serial port.
158 * Obviously, we only support this on the normal COM port.
160 static int h3xxx_uart_set_wake(struct uart_port
*port
, u_int enable
)
164 if (port
->mapbase
== _Ser3UTCR0
) {
166 PWER
|= PWER_GPIO23
| PWER_GPIO25
; /* DCD and CTS */
168 PWER
&= ~(PWER_GPIO23
| PWER_GPIO25
); /* DCD and CTS */
174 static struct sa1100_port_fns h3xxx_port_fns __initdata
= {
175 .set_mctrl
= h3xxx_uart_set_mctrl
,
176 .get_mctrl
= h3xxx_uart_get_mctrl
,
178 .set_wake
= h3xxx_uart_set_wake
,
185 static struct resource egpio_resources
[] = {
186 [0] = DEFINE_RES_MEM(H3600_EGPIO_PHYS
, 0x4),
189 static struct htc_egpio_chip egpio_chips
[] = {
192 .gpio_base
= H3XXX_EGPIO_BASE
,
194 .direction
= HTC_EGPIO_OUTPUT
,
195 .initial_values
= 0x0080, /* H3XXX_EGPIO_RS232_ON */
199 static struct htc_egpio_platform_data egpio_info
= {
203 .num_chips
= ARRAY_SIZE(egpio_chips
),
206 static struct platform_device h3xxx_egpio
= {
209 .resource
= egpio_resources
,
210 .num_resources
= ARRAY_SIZE(egpio_resources
),
212 .platform_data
= &egpio_info
,
220 static struct gpio_keys_button h3xxx_button_table
[] = {
223 .gpio
= H3XXX_GPIO_PWR_BUTTON
,
224 .desc
= "Power Button",
230 .gpio
= H3XXX_GPIO_ACTION_BUTTON
,
232 .desc
= "Action button",
238 static struct gpio_keys_platform_data h3xxx_keys_data
= {
239 .buttons
= h3xxx_button_table
,
240 .nbuttons
= ARRAY_SIZE(h3xxx_button_table
),
243 static struct platform_device h3xxx_keys
= {
247 .platform_data
= &h3xxx_keys_data
,
251 static struct platform_device
*h3xxx_devices
[] = {
256 void __init
h3xxx_mach_init(void)
258 sa1100_register_uart_fns(&h3xxx_port_fns
);
259 sa11x0_register_mtd(&h3xxx_flash_data
, &h3xxx_flash_resource
, 1);
260 platform_add_devices(h3xxx_devices
, ARRAY_SIZE(h3xxx_devices
));
263 static struct map_desc h3600_io_desc
[] __initdata
= {
264 { /* static memory bank 2 CS#2 */
265 .virtual = H3600_BANK_2_VIRT
,
266 .pfn
= __phys_to_pfn(SA1100_CS2_PHYS
),
267 .length
= 0x02800000,
269 }, { /* static memory bank 4 CS#4 */
270 .virtual = H3600_BANK_4_VIRT
,
271 .pfn
= __phys_to_pfn(SA1100_CS4_PHYS
),
272 .length
= 0x00800000,
274 }, { /* EGPIO 0 CS#5 */
275 .virtual = H3600_EGPIO_VIRT
,
276 .pfn
= __phys_to_pfn(H3600_EGPIO_PHYS
),
277 .length
= 0x01000000,
283 * Common map_io initialization
286 void __init
h3xxx_map_io(void)
289 iotable_init(h3600_io_desc
, ARRAY_SIZE(h3600_io_desc
));
291 sa1100_register_uart(0, 3); /* Common serial port */
292 // sa1100_register_uart(1, 1); /* Microcontroller on 3100/3600 */
294 /* Ensure those pins are outputs and driving low */
295 PPDR
|= PPC_TXD4
| PPC_SCLK
| PPC_SFRM
;
296 PPSR
&= ~(PPC_TXD4
| PPC_SCLK
| PPC_SFRM
);
298 /* Configure suspend conditions */
303 GPCR
= 0x0fffffff; /* All outputs are set low by default */
304 GPDR
= 0; /* Configure all GPIOs as input */