2 * Support for Sharp SL-C7xx PDAs
3 * Models: SL-C700 (Corgi), SL-C750 (Shepherd), SL-C760 (Husky)
5 * Copyright (c) 2004-2005 Richard Purdie
7 * Based on Sharp's 2.4 kernel patches/lubbock.c
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/platform_device.h>
18 #include <linux/major.h>
20 #include <linux/interrupt.h>
21 #include <linux/mmc/host.h>
22 #include <linux/mtd/physmap.h>
24 #include <linux/gpio.h>
25 #include <linux/backlight.h>
26 #include <linux/i2c.h>
27 #include <linux/i2c/pxa-i2c.h>
29 #include <linux/regulator/machine.h>
30 #include <linux/spi/spi.h>
31 #include <linux/spi/ads7846.h>
32 #include <linux/spi/corgi_lcd.h>
33 #include <linux/spi/pxa2xx_spi.h>
34 #include <linux/mtd/sharpsl.h>
35 #include <linux/input/matrix_keypad.h>
36 #include <linux/gpio_keys.h>
37 #include <linux/module.h>
38 #include <linux/memblock.h>
39 #include <video/w100fb.h>
41 #include <asm/setup.h>
42 #include <asm/memory.h>
43 #include <asm/mach-types.h>
44 #include <mach/hardware.h>
47 #include <asm/mach/arch.h>
48 #include <asm/mach/map.h>
49 #include <asm/mach/irq.h>
51 #include <mach/pxa25x.h>
52 #include <linux/platform_data/irda-pxaficp.h>
53 #include <linux/platform_data/mmc-pxamci.h>
55 #include <mach/corgi.h>
56 #include <mach/sharpsl_pm.h>
58 #include <asm/mach/sharpsl_param.h>
59 #include <asm/hardware/scoop.h>
64 static unsigned long corgi_pin_config
[] __initdata
= {
65 /* Static Memory I/O */
66 GPIO78_nCS_2
, /* w100fb */
67 GPIO80_nCS_4
, /* scoop */
73 GPIO24_GPIO
, /* CORGI_GPIO_ADS7846_CS - SFRM as chip select */
76 GPIO28_I2S_BITCLK_OUT
,
110 /* GPIO Matrix Keypad */
111 GPIO66_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 0 */
112 GPIO67_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 1 */
113 GPIO68_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 2 */
114 GPIO69_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 3 */
115 GPIO70_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 4 */
116 GPIO71_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 5 */
117 GPIO72_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 6 */
118 GPIO73_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 7 */
119 GPIO74_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 8 */
120 GPIO75_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 9 */
121 GPIO76_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 10 */
122 GPIO77_GPIO
| MFP_LPM_DRIVE_HIGH
, /* column 11 */
123 GPIO58_GPIO
, /* row 0 */
124 GPIO59_GPIO
, /* row 1 */
125 GPIO60_GPIO
, /* row 2 */
126 GPIO61_GPIO
, /* row 3 */
127 GPIO62_GPIO
, /* row 4 */
128 GPIO63_GPIO
, /* row 5 */
129 GPIO64_GPIO
, /* row 6 */
130 GPIO65_GPIO
, /* row 7 */
133 GPIO9_GPIO
, /* CORGI_GPIO_nSD_DETECT */
134 GPIO7_GPIO
, /* CORGI_GPIO_nSD_WP */
135 GPIO11_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* CORGI_GPIO_MAIN_BAT_{LOW,COVER} */
136 GPIO13_GPIO
| MFP_LPM_KEEP_OUTPUT
, /* CORGI_GPIO_LED_ORANGE */
137 GPIO21_GPIO
, /* CORGI_GPIO_ADC_TEMP */
138 GPIO22_GPIO
, /* CORGI_GPIO_IR_ON */
139 GPIO33_GPIO
, /* CORGI_GPIO_SD_PWR */
140 GPIO38_GPIO
| MFP_LPM_KEEP_OUTPUT
, /* CORGI_GPIO_CHRG_ON */
141 GPIO43_GPIO
| MFP_LPM_KEEP_OUTPUT
, /* CORGI_GPIO_CHRG_UKN */
142 GPIO44_GPIO
, /* CORGI_GPIO_HSYNC */
144 GPIO0_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* CORGI_GPIO_KEY_INT */
145 GPIO1_GPIO
| WAKEUP_ON_EDGE_RISE
, /* CORGI_GPIO_AC_IN */
146 GPIO3_GPIO
| WAKEUP_ON_EDGE_BOTH
, /* CORGI_GPIO_WAKEUP */
152 static struct resource corgi_scoop_resources
[] = {
156 .flags
= IORESOURCE_MEM
,
160 static struct scoop_config corgi_scoop_setup
= {
161 .io_dir
= CORGI_SCOOP_IO_DIR
,
162 .io_out
= CORGI_SCOOP_IO_OUT
,
163 .gpio_base
= CORGI_SCOOP_GPIO_BASE
,
166 struct platform_device corgiscoop_device
= {
167 .name
= "sharp-scoop",
170 .platform_data
= &corgi_scoop_setup
,
172 .num_resources
= ARRAY_SIZE(corgi_scoop_resources
),
173 .resource
= corgi_scoop_resources
,
176 static struct scoop_pcmcia_dev corgi_pcmcia_scoop
[] = {
178 .dev
= &corgiscoop_device
.dev
,
179 .irq
= CORGI_IRQ_GPIO_CF_IRQ
,
180 .cd_irq
= CORGI_IRQ_GPIO_CF_CD
,
181 .cd_irq_str
= "PCMCIA0 CD",
185 static struct scoop_pcmcia_config corgi_pcmcia_config
= {
186 .devs
= &corgi_pcmcia_scoop
[0],
190 static struct w100_mem_info corgi_fb_mem
= {
191 .ext_cntl
= 0x00040003,
192 .sdram_mode_reg
= 0x00650021,
193 .ext_timing_cntl
= 0x10002a4a,
194 .io_cntl
= 0x7ff87012,
198 static struct w100_gen_regs corgi_fb_regs
= {
199 .lcd_format
= 0x00000003,
200 .lcdd_cntl1
= 0x01CC0000,
201 .lcdd_cntl2
= 0x0003FFFF,
202 .genlcd_cntl1
= 0x00FFFF0D,
203 .genlcd_cntl2
= 0x003F3003,
204 .genlcd_cntl3
= 0x000102aa,
207 static struct w100_gpio_regs corgi_fb_gpio
= {
208 .init_data1
= 0x000000bf,
209 .init_data2
= 0x00000000,
210 .gpio_dir1
= 0x00000000,
211 .gpio_oe1
= 0x03c0feff,
212 .gpio_dir2
= 0x00000000,
213 .gpio_oe2
= 0x00000000,
216 static struct w100_mode corgi_fb_modes
[] = {
221 .right_margin
= 0x55,
222 .upper_margin
= 0x03,
223 .lower_margin
= 0x00,
224 .crtc_ss
= 0x82360056,
225 .crtc_ls
= 0xA0280000,
226 .crtc_gs
= 0x80280028,
227 .crtc_vpos_gs
= 0x02830002,
228 .crtc_rev
= 0x00400008,
229 .crtc_dclk
= 0xA0000000,
230 .crtc_gclk
= 0x8015010F,
231 .crtc_goe
= 0x80100110,
232 .crtc_ps1_active
= 0x41060010,
234 .fast_pll_freq
= 100,
235 .sysclk_src
= CLK_SRC_PLL
,
237 .pixclk_src
= CLK_SRC_PLL
,
239 .pixclk_divider_rotated
= 6,
244 .right_margin
= 0x2e,
245 .upper_margin
= 0x01,
246 .lower_margin
= 0x00,
247 .crtc_ss
= 0x81170027,
248 .crtc_ls
= 0xA0140000,
249 .crtc_gs
= 0xC0140014,
250 .crtc_vpos_gs
= 0x00010141,
251 .crtc_rev
= 0x00400008,
252 .crtc_dclk
= 0xA0000000,
253 .crtc_gclk
= 0x8015010F,
254 .crtc_goe
= 0x80100110,
255 .crtc_ps1_active
= 0x41060010,
258 .sysclk_src
= CLK_SRC_XTAL
,
260 .pixclk_src
= CLK_SRC_XTAL
,
262 .pixclk_divider_rotated
= 1,
267 static struct w100fb_mach_info corgi_fb_info
= {
268 .init_mode
= INIT_MODE_ROTATED
,
269 .mem
= &corgi_fb_mem
,
270 .regs
= &corgi_fb_regs
,
271 .modelist
= &corgi_fb_modes
[0],
273 .gpio
= &corgi_fb_gpio
,
274 .xtal_freq
= 12500000,
278 static struct resource corgi_fb_resources
[] = {
282 .flags
= IORESOURCE_MEM
,
286 static struct platform_device corgifb_device
= {
289 .num_resources
= ARRAY_SIZE(corgi_fb_resources
),
290 .resource
= corgi_fb_resources
,
292 .platform_data
= &corgi_fb_info
,
298 * Corgi Keyboard Device
300 #define CORGI_KEY_CALENDER KEY_F1
301 #define CORGI_KEY_ADDRESS KEY_F2
302 #define CORGI_KEY_FN KEY_F3
303 #define CORGI_KEY_CANCEL KEY_F4
304 #define CORGI_KEY_OFF KEY_SUSPEND
305 #define CORGI_KEY_EXOK KEY_F5
306 #define CORGI_KEY_EXCANCEL KEY_F6
307 #define CORGI_KEY_EXJOGDOWN KEY_F7
308 #define CORGI_KEY_EXJOGUP KEY_F8
309 #define CORGI_KEY_JAP1 KEY_LEFTCTRL
310 #define CORGI_KEY_JAP2 KEY_LEFTALT
311 #define CORGI_KEY_MAIL KEY_F10
312 #define CORGI_KEY_OK KEY_F11
313 #define CORGI_KEY_MENU KEY_F12
315 static const uint32_t corgikbd_keymap
[] = {
323 KEY(0, 8, KEY_BACKSPACE
),
340 KEY(3, 0, CORGI_KEY_CALENDER
),
348 KEY(3, 9, KEY_RIGHTSHIFT
),
349 KEY(4, 0, CORGI_KEY_ADDRESS
),
356 KEY(4, 8, KEY_ENTER
),
357 KEY(4, 10, KEY_LEFTSHIFT
),
358 KEY(5, 0, CORGI_KEY_MAIL
),
361 KEY(5, 3, KEY_MINUS
),
362 KEY(5, 4, KEY_SPACE
),
363 KEY(5, 5, KEY_COMMA
),
365 KEY(5, 11, CORGI_KEY_FN
),
366 KEY(6, 0, KEY_SYSRQ
),
367 KEY(6, 1, CORGI_KEY_JAP1
),
368 KEY(6, 2, CORGI_KEY_JAP2
),
369 KEY(6, 3, CORGI_KEY_CANCEL
),
370 KEY(6, 4, CORGI_KEY_OK
),
371 KEY(6, 5, CORGI_KEY_MENU
),
374 KEY(6, 8, KEY_RIGHT
),
375 KEY(7, 0, CORGI_KEY_OFF
),
376 KEY(7, 1, CORGI_KEY_EXOK
),
377 KEY(7, 2, CORGI_KEY_EXCANCEL
),
378 KEY(7, 3, CORGI_KEY_EXJOGDOWN
),
379 KEY(7, 4, CORGI_KEY_EXJOGUP
),
382 static struct matrix_keymap_data corgikbd_keymap_data
= {
383 .keymap
= corgikbd_keymap
,
384 .keymap_size
= ARRAY_SIZE(corgikbd_keymap
),
387 static const int corgikbd_row_gpios
[] =
388 { 58, 59, 60, 61, 62, 63, 64, 65 };
389 static const int corgikbd_col_gpios
[] =
390 { 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77 };
392 static struct matrix_keypad_platform_data corgikbd_pdata
= {
393 .keymap_data
= &corgikbd_keymap_data
,
394 .row_gpios
= corgikbd_row_gpios
,
395 .col_gpios
= corgikbd_col_gpios
,
396 .num_row_gpios
= ARRAY_SIZE(corgikbd_row_gpios
),
397 .num_col_gpios
= ARRAY_SIZE(corgikbd_col_gpios
),
398 .col_scan_delay_us
= 10,
403 static struct platform_device corgikbd_device
= {
404 .name
= "matrix-keypad",
407 .platform_data
= &corgikbd_pdata
,
411 static struct gpio_keys_button corgi_gpio_keys
[] = {
415 .gpio
= CORGI_GPIO_SWA
,
416 .desc
= "Lid close switch",
417 .debounce_interval
= 500,
421 .code
= SW_TABLET_MODE
,
422 .gpio
= CORGI_GPIO_SWB
,
423 .desc
= "Tablet mode switch",
424 .debounce_interval
= 500,
428 .code
= SW_HEADPHONE_INSERT
,
429 .gpio
= CORGI_GPIO_AK_INT
,
430 .desc
= "HeadPhone insert",
431 .debounce_interval
= 500,
435 static struct gpio_keys_platform_data corgi_gpio_keys_platform_data
= {
436 .buttons
= corgi_gpio_keys
,
437 .nbuttons
= ARRAY_SIZE(corgi_gpio_keys
),
438 .poll_interval
= 250,
441 static struct platform_device corgi_gpio_keys_device
= {
442 .name
= "gpio-keys-polled",
445 .platform_data
= &corgi_gpio_keys_platform_data
,
452 static struct gpio_led corgi_gpio_leds
[] = {
454 .name
= "corgi:amber:charge",
455 .default_trigger
= "sharpsl-charge",
456 .gpio
= CORGI_GPIO_LED_ORANGE
,
459 .name
= "corgi:green:mail",
460 .default_trigger
= "nand-disk",
461 .gpio
= CORGI_GPIO_LED_GREEN
,
465 static struct gpio_led_platform_data corgi_gpio_leds_info
= {
466 .leds
= corgi_gpio_leds
,
467 .num_leds
= ARRAY_SIZE(corgi_gpio_leds
),
470 static struct platform_device corgiled_device
= {
474 .platform_data
= &corgi_gpio_leds_info
,
481 static struct platform_device corgi_audio_device
= {
482 .name
= "corgi-audio",
489 * The card detect interrupt isn't debounced so we delay it by 250ms
490 * to give the card a chance to fully insert/eject.
492 static struct pxamci_platform_data corgi_mci_platform_data
= {
493 .detect_delay_ms
= 250,
494 .ocr_mask
= MMC_VDD_32_33
|MMC_VDD_33_34
,
495 .gpio_card_detect
= CORGI_GPIO_nSD_DETECT
,
496 .gpio_card_ro
= CORGI_GPIO_nSD_WP
,
497 .gpio_power
= CORGI_GPIO_SD_PWR
,
504 static struct pxaficp_platform_data corgi_ficp_platform_data
= {
505 .gpio_pwdown
= CORGI_GPIO_IR_ON
,
506 .transceiver_cap
= IR_SIRMODE
| IR_OFF
,
511 * USB Device Controller
513 static struct pxa2xx_udc_mach_info udc_info __initdata
= {
514 /* no connect GPIO; corgi can't tell connection status */
515 .gpio_pullup
= CORGI_GPIO_USB_PULLUP
,
518 #if IS_ENABLED(CONFIG_SPI_PXA2XX)
519 static struct pxa2xx_spi_master corgi_spi_info
= {
523 static void corgi_wait_for_hsync(void)
525 while (gpio_get_value(CORGI_GPIO_HSYNC
))
528 while (!gpio_get_value(CORGI_GPIO_HSYNC
))
532 static struct ads7846_platform_data corgi_ads7846_info
= {
534 .vref_delay_usecs
= 100,
537 .gpio_pendown
= CORGI_GPIO_TP_INT
,
538 .wait_for_sync
= corgi_wait_for_hsync
,
541 static struct pxa2xx_spi_chip corgi_ads7846_chip
= {
542 .gpio_cs
= CORGI_GPIO_ADS7846_CS
,
545 static void corgi_bl_kick_battery(void)
547 void (*kick_batt
)(void);
549 kick_batt
= symbol_get(sharpsl_battery_kick
);
552 symbol_put(sharpsl_battery_kick
);
556 static struct corgi_lcd_platform_data corgi_lcdcon_info
= {
557 .init_mode
= CORGI_LCD_MODE_VGA
,
558 .max_intensity
= 0x2f,
559 .default_intensity
= 0x1f,
561 .gpio_backlight_cont
= CORGI_GPIO_BACKLIGHT_CONT
,
562 .gpio_backlight_on
= -1,
563 .kick_battery
= corgi_bl_kick_battery
,
566 static struct pxa2xx_spi_chip corgi_lcdcon_chip
= {
567 .gpio_cs
= CORGI_GPIO_LCDCON_CS
,
570 static struct pxa2xx_spi_chip corgi_max1111_chip
= {
571 .gpio_cs
= CORGI_GPIO_MAX1111_CS
,
574 static struct spi_board_info corgi_spi_devices
[] = {
576 .modalias
= "ads7846",
577 .max_speed_hz
= 1200000,
580 .platform_data
= &corgi_ads7846_info
,
581 .controller_data
= &corgi_ads7846_chip
,
582 .irq
= PXA_GPIO_TO_IRQ(CORGI_GPIO_TP_INT
),
584 .modalias
= "corgi-lcd",
585 .max_speed_hz
= 50000,
588 .platform_data
= &corgi_lcdcon_info
,
589 .controller_data
= &corgi_lcdcon_chip
,
591 .modalias
= "max1111",
592 .max_speed_hz
= 450000,
595 .controller_data
= &corgi_max1111_chip
,
599 static void __init
corgi_init_spi(void)
601 pxa2xx_set_spi_info(1, &corgi_spi_info
);
602 spi_register_board_info(ARRAY_AND_SIZE(corgi_spi_devices
));
605 static inline void corgi_init_spi(void) {}
608 static struct mtd_partition sharpsl_nand_partitions
[] = {
610 .name
= "System Area",
612 .size
= 7 * 1024 * 1024,
615 .name
= "Root Filesystem",
616 .offset
= 7 * 1024 * 1024,
617 .size
= 25 * 1024 * 1024,
620 .name
= "Home Filesystem",
621 .offset
= MTDPART_OFS_APPEND
,
622 .size
= MTDPART_SIZ_FULL
,
626 static uint8_t scan_ff_pattern
[] = { 0xff, 0xff };
628 static struct nand_bbt_descr sharpsl_bbt
= {
632 .pattern
= scan_ff_pattern
635 static struct sharpsl_nand_platform_data sharpsl_nand_platform_data
= {
636 .badblock_pattern
= &sharpsl_bbt
,
637 .partitions
= sharpsl_nand_partitions
,
638 .nr_partitions
= ARRAY_SIZE(sharpsl_nand_partitions
),
641 static struct resource sharpsl_nand_resources
[] = {
645 .flags
= IORESOURCE_MEM
,
649 static struct platform_device sharpsl_nand_device
= {
650 .name
= "sharpsl-nand",
652 .resource
= sharpsl_nand_resources
,
653 .num_resources
= ARRAY_SIZE(sharpsl_nand_resources
),
654 .dev
.platform_data
= &sharpsl_nand_platform_data
,
657 static struct mtd_partition sharpsl_rom_parts
[] = {
659 .name
="Boot PROM Filesystem",
660 .offset
= 0x00120000,
661 .size
= MTDPART_SIZ_FULL
,
665 static struct physmap_flash_data sharpsl_rom_data
= {
667 .nr_parts
= ARRAY_SIZE(sharpsl_rom_parts
),
668 .parts
= sharpsl_rom_parts
,
671 static struct resource sharpsl_rom_resources
[] = {
675 .flags
= IORESOURCE_MEM
,
679 static struct platform_device sharpsl_rom_device
= {
680 .name
= "physmap-flash",
682 .resource
= sharpsl_rom_resources
,
683 .num_resources
= ARRAY_SIZE(sharpsl_rom_resources
),
684 .dev
.platform_data
= &sharpsl_rom_data
,
687 static struct platform_device
*devices
[] __initdata
= {
690 &corgi_gpio_keys_device
,
694 &sharpsl_nand_device
,
698 static struct i2c_board_info __initdata corgi_i2c_devices
[] = {
699 { I2C_BOARD_INFO("wm8731", 0x1b) },
702 static void corgi_poweroff(void)
704 if (!machine_is_corgi())
705 /* Green LED off tells the bootloader to halt */
706 gpio_set_value(CORGI_GPIO_LED_GREEN
, 0);
708 pxa_restart(REBOOT_HARD
, NULL
);
711 static void corgi_restart(enum reboot_mode mode
, const char *cmd
)
713 if (!machine_is_corgi())
714 /* Green LED on tells the bootloader to reboot */
715 gpio_set_value(CORGI_GPIO_LED_GREEN
, 1);
717 pxa_restart(REBOOT_HARD
, cmd
);
720 static void __init
corgi_init(void)
722 pm_power_off
= corgi_poweroff
;
724 /* Stop 3.6MHz and drive HIGH to PCMCIA and CS */
727 pxa2xx_mfp_config(ARRAY_AND_SIZE(corgi_pin_config
));
729 /* allow wakeup from various GPIOs */
730 gpio_set_wake(CORGI_GPIO_KEY_INT
, 1);
731 gpio_set_wake(CORGI_GPIO_WAKEUP
, 1);
732 gpio_set_wake(CORGI_GPIO_AC_IN
, 1);
733 gpio_set_wake(CORGI_GPIO_CHRG_FULL
, 1);
735 if (!machine_is_corgi())
736 gpio_set_wake(CORGI_GPIO_MAIN_BAT_LOW
, 1);
738 pxa_set_ffuart_info(NULL
);
739 pxa_set_btuart_info(NULL
);
740 pxa_set_stuart_info(NULL
);
744 pxa_set_udc_info(&udc_info
);
745 pxa_set_mci_info(&corgi_mci_platform_data
);
746 pxa_set_ficp_info(&corgi_ficp_platform_data
);
747 pxa_set_i2c_info(NULL
);
748 i2c_register_board_info(0, ARRAY_AND_SIZE(corgi_i2c_devices
));
750 platform_scoop_config
= &corgi_pcmcia_config
;
752 if (machine_is_husky())
753 sharpsl_nand_partitions
[1].size
= 53 * 1024 * 1024;
755 platform_add_devices(devices
, ARRAY_SIZE(devices
));
757 regulator_has_full_constraints();
760 static void __init
fixup_corgi(struct tag
*tags
, char **cmdline
)
762 sharpsl_save_param();
763 if (machine_is_corgi())
764 memblock_add(0xa0000000, SZ_32M
);
766 memblock_add(0xa0000000, SZ_64M
);
769 #ifdef CONFIG_MACH_CORGI
770 MACHINE_START(CORGI
, "SHARP Corgi")
771 .fixup
= fixup_corgi
,
772 .map_io
= pxa25x_map_io
,
773 .nr_irqs
= PXA_NR_IRQS
,
774 .init_irq
= pxa25x_init_irq
,
775 .handle_irq
= pxa25x_handle_irq
,
776 .init_machine
= corgi_init
,
777 .init_time
= pxa_timer_init
,
778 .restart
= corgi_restart
,
782 #ifdef CONFIG_MACH_SHEPHERD
783 MACHINE_START(SHEPHERD
, "SHARP Shepherd")
784 .fixup
= fixup_corgi
,
785 .map_io
= pxa25x_map_io
,
786 .nr_irqs
= PXA_NR_IRQS
,
787 .init_irq
= pxa25x_init_irq
,
788 .handle_irq
= pxa25x_handle_irq
,
789 .init_machine
= corgi_init
,
790 .init_time
= pxa_timer_init
,
791 .restart
= corgi_restart
,
795 #ifdef CONFIG_MACH_HUSKY
796 MACHINE_START(HUSKY
, "SHARP Husky")
797 .fixup
= fixup_corgi
,
798 .map_io
= pxa25x_map_io
,
799 .nr_irqs
= PXA_NR_IRQS
,
800 .init_irq
= pxa25x_init_irq
,
801 .handle_irq
= pxa25x_handle_irq
,
802 .init_machine
= corgi_init
,
803 .init_time
= pxa_timer_init
,
804 .restart
= corgi_restart
,