2 * Support for the Arcom ZEUS.
4 * Copyright (C) 2006 Arcom Control Systems Ltd.
6 * Loosely based on Arcom's 2.6.16.28.
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.
14 #include <linux/cpufreq.h>
15 #include <linux/interrupt.h>
16 #include <linux/irq.h>
18 #include <linux/gpio.h>
19 #include <linux/serial_8250.h>
20 #include <linux/dm9000.h>
21 #include <linux/mmc/host.h>
22 #include <linux/spi/spi.h>
23 #include <linux/spi/pxa2xx_spi.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/partitions.h>
26 #include <linux/mtd/physmap.h>
27 #include <linux/i2c.h>
28 #include <linux/i2c/pxa-i2c.h>
29 #include <linux/i2c/pca953x.h>
30 #include <linux/apm-emulation.h>
31 #include <linux/can/platform/mcp251x.h>
33 #include <asm/mach-types.h>
34 #include <asm/suspend.h>
35 #include <asm/system_info.h>
36 #include <asm/mach/arch.h>
37 #include <asm/mach/map.h>
39 #include <mach/pxa27x.h>
40 #include <mach/regs-uart.h>
41 #include <linux/platform_data/usb-ohci-pxa27x.h>
42 #include <linux/platform_data/mmc-pxamci.h>
43 #include <mach/pxa27x-udc.h>
45 #include <linux/platform_data/video-pxafb.h>
47 #include <mach/audio.h>
48 #include <linux/platform_data/pcmcia-pxa2xx_viper.h>
49 #include <mach/zeus.h>
50 #include <mach/smemc.h>
58 static unsigned long zeus_irq_enabled_mask;
59 static const int zeus_isa_irqs[] = { 3, 4, 5, 6, 7, 10, 11, 12, };
60 static const int zeus_isa_irq_map[] = {
61 0, /* ISA irq #0, invalid */
62 0, /* ISA irq #1, invalid */
63 0, /* ISA irq #2, invalid */
64 1 << 0, /* ISA irq #3 */
65 1 << 1, /* ISA irq #4 */
66 1 << 2, /* ISA irq #5 */
67 1 << 3, /* ISA irq #6 */
68 1 << 4, /* ISA irq #7 */
69 0, /* ISA irq #8, invalid */
70 0, /* ISA irq #9, invalid */
71 1 << 5, /* ISA irq #10 */
72 1 << 6, /* ISA irq #11 */
73 1 << 7, /* ISA irq #12 */
76 static inline int zeus_irq_to_bitmask(unsigned int irq)
78 return zeus_isa_irq_map[irq - PXA_ISA_IRQ(0)];
81 static inline int zeus_bit_to_irq(int bit)
83 return zeus_isa_irqs[bit] + PXA_ISA_IRQ(0);
86 static void zeus_ack_irq(struct irq_data *d)
88 __raw_writew(zeus_irq_to_bitmask(d->irq), ZEUS_CPLD_ISA_IRQ);
91 static void zeus_mask_irq(struct irq_data *d)
93 zeus_irq_enabled_mask &= ~(zeus_irq_to_bitmask(d->irq));
96 static void zeus_unmask_irq(struct irq_data *d)
98 zeus_irq_enabled_mask |= zeus_irq_to_bitmask(d->irq);
101 static inline unsigned long zeus_irq_pending(void)
103 return __raw_readw(ZEUS_CPLD_ISA_IRQ) & zeus_irq_enabled_mask;
106 static void zeus_irq_handler(unsigned int irq, struct irq_desc *desc)
108 unsigned long pending;
110 pending = zeus_irq_pending();
112 /* we're in a chained irq handler,
113 * so ack the interrupt by hand */
114 desc->irq_data.chip->irq_ack(&desc->irq_data);
116 if (likely(pending)) {
117 irq = zeus_bit_to_irq(__ffs(pending));
118 generic_handle_irq(irq);
120 pending = zeus_irq_pending();
124 static struct irq_chip zeus_irq_chip = {
126 .irq_ack = zeus_ack_irq,
127 .irq_mask = zeus_mask_irq,
128 .irq_unmask = zeus_unmask_irq,
131 static void __init zeus_init_irq(void)
138 /* Peripheral IRQs. It would be nice to move those inside driver
139 configuration, but it is not supported at the moment. */
140 irq_set_irq_type(gpio_to_irq(ZEUS_AC97_GPIO), IRQ_TYPE_EDGE_RISING);
141 irq_set_irq_type(gpio_to_irq(ZEUS_WAKEUP_GPIO), IRQ_TYPE_EDGE_RISING);
142 irq_set_irq_type(gpio_to_irq(ZEUS_PTT_GPIO), IRQ_TYPE_EDGE_RISING);
143 irq_set_irq_type(gpio_to_irq(ZEUS_EXTGPIO_GPIO),
144 IRQ_TYPE_EDGE_FALLING);
145 irq_set_irq_type(gpio_to_irq(ZEUS_CAN_GPIO), IRQ_TYPE_EDGE_FALLING);
148 for (level = 0; level < ARRAY_SIZE(zeus_isa_irqs); level++) {
149 isa_irq = zeus_bit_to_irq(level);
150 irq_set_chip_and_handler(isa_irq, &zeus_irq_chip,
152 set_irq_flags(isa_irq, IRQF_VALID | IRQF_PROBE);
155 irq_set_irq_type(gpio_to_irq(ZEUS_ISA_GPIO), IRQ_TYPE_EDGE_RISING);
156 irq_set_chained_handler(gpio_to_irq(ZEUS_ISA_GPIO), zeus_irq_handler);
165 static struct resource zeus_mtd_resources[] = {
166 [0] = { /* NOR Flash (up to 64MB) */
167 .start = ZEUS_FLASH_PHYS,
168 .end = ZEUS_FLASH_PHYS + SZ_64M - 1,
169 .flags = IORESOURCE_MEM,
172 .start = ZEUS_SRAM_PHYS,
173 .end = ZEUS_SRAM_PHYS + SZ_512K - 1,
174 .flags = IORESOURCE_MEM,
178 static struct physmap_flash_data zeus_flash_data[] = {
186 static struct platform_device zeus_mtd_devices[] = {
188 .name = "physmap-flash",
191 .platform_data = &zeus_flash_data[0],
193 .resource = &zeus_mtd_resources[0],
199 static struct resource zeus_serial_resources[] = {
203 .flags = IORESOURCE_MEM,
208 .flags = IORESOURCE_MEM,
213 .flags = IORESOURCE_MEM,
218 .flags = IORESOURCE_MEM,
223 .flags = IORESOURCE_MEM,
228 .flags = IORESOURCE_MEM,
232 static struct plat_serial8250_port serial_platform_data[] = {
234 /* FIXME: Shared IRQs on COM1-COM4 will not work properly on v1i1 hardware. */
236 .mapbase = 0x10000000,
237 .irq = PXA_GPIO_TO_IRQ(ZEUS_UARTA_GPIO),
238 .irqflags = IRQF_TRIGGER_RISING,
241 .flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
245 .mapbase = 0x10800000,
246 .irq = PXA_GPIO_TO_IRQ(ZEUS_UARTB_GPIO),
247 .irqflags = IRQF_TRIGGER_RISING,
250 .flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
254 .mapbase = 0x11000000,
255 .irq = PXA_GPIO_TO_IRQ(ZEUS_UARTC_GPIO),
256 .irqflags = IRQF_TRIGGER_RISING,
259 .flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
263 .mapbase = 0x11800000,
264 .irq = PXA_GPIO_TO_IRQ(ZEUS_UARTD_GPIO),
265 .irqflags = IRQF_TRIGGER_RISING,
268 .flags = UPF_IOREMAP | UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
273 .membase = (void *)&FFUART,
274 .mapbase = __PREG(FFUART),
276 .uartclk = 921600 * 16,
278 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
282 .membase = (void *)&BTUART,
283 .mapbase = __PREG(BTUART),
285 .uartclk = 921600 * 16,
287 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
291 .membase = (void *)&STUART,
292 .mapbase = __PREG(STUART),
294 .uartclk = 921600 * 16,
296 .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
302 static struct platform_device zeus_serial_device = {
303 .name = "serial8250",
304 .id = PLAT8250_DEV_PLATFORM,
306 .platform_data = serial_platform_data,
308 .num_resources = ARRAY_SIZE(zeus_serial_resources),
309 .resource = zeus_serial_resources,
313 static struct resource zeus_dm9k0_resource[] = {
315 .start = ZEUS_ETH0_PHYS,
316 .end = ZEUS_ETH0_PHYS + 1,
317 .flags = IORESOURCE_MEM
320 .start = ZEUS_ETH0_PHYS + 2,
321 .end = ZEUS_ETH0_PHYS + 3,
322 .flags = IORESOURCE_MEM
325 .start = PXA_GPIO_TO_IRQ(ZEUS_ETH0_GPIO),
326 .end = PXA_GPIO_TO_IRQ(ZEUS_ETH0_GPIO),
327 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
331 static struct resource zeus_dm9k1_resource[] = {
333 .start = ZEUS_ETH1_PHYS,
334 .end = ZEUS_ETH1_PHYS + 1,
335 .flags = IORESOURCE_MEM
338 .start = ZEUS_ETH1_PHYS + 2,
339 .end = ZEUS_ETH1_PHYS + 3,
340 .flags = IORESOURCE_MEM,
343 .start = PXA_GPIO_TO_IRQ(ZEUS_ETH1_GPIO),
344 .end = PXA_GPIO_TO_IRQ(ZEUS_ETH1_GPIO),
345 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWEDGE,
349 static struct dm9000_plat_data zeus_dm9k_platdata = {
350 .flags = DM9000_PLATF_16BITONLY,
353 static struct platform_device zeus_dm9k0_device = {
356 .num_resources = ARRAY_SIZE(zeus_dm9k0_resource),
357 .resource = zeus_dm9k0_resource,
359 .platform_data = &zeus_dm9k_platdata,
363 static struct platform_device zeus_dm9k1_device = {
366 .num_resources = ARRAY_SIZE(zeus_dm9k1_resource),
367 .resource = zeus_dm9k1_resource,
369 .platform_data = &zeus_dm9k_platdata,
374 static struct resource zeus_sram_resource = {
375 .start = ZEUS_SRAM_PHYS,
376 .end = ZEUS_SRAM_PHYS + ZEUS_SRAM_SIZE * 2 - 1,
377 .flags = IORESOURCE_MEM,
380 static struct platform_device zeus_sram_device = {
381 .name = "pxa2xx-8bit-sram",
384 .resource = &zeus_sram_resource,
387 /* SPI interface on SSP3 */
388 static struct pxa2xx_spi_master pxa2xx_spi_ssp3_master_info = {
394 static int zeus_mcp2515_setup(struct spi_device *sdev)
398 err = gpio_request(ZEUS_CAN_SHDN_GPIO, "CAN shutdown");
402 err = gpio_direction_output(ZEUS_CAN_SHDN_GPIO, 1);
404 gpio_free(ZEUS_CAN_SHDN_GPIO);
411 static int zeus_mcp2515_transceiver_enable(int enable)
413 gpio_set_value(ZEUS_CAN_SHDN_GPIO, !enable);
417 static struct mcp251x_platform_data zeus_mcp2515_pdata = {
418 .oscillator_frequency = 16*1000*1000,
419 .board_specific_setup = zeus_mcp2515_setup,
420 .power_enable = zeus_mcp2515_transceiver_enable,
423 static struct spi_board_info zeus_spi_board_info[] = {
425 .modalias = "mcp2515",
426 .platform_data = &zeus_mcp2515_pdata,
427 .irq = PXA_GPIO_TO_IRQ(ZEUS_CAN_GPIO),
428 .max_speed_hz = 1*1000*1000,
436 static struct gpio_led zeus_leds[] = {
438 .name = "zeus:yellow:1",
439 .default_trigger = "heartbeat",
440 .gpio = ZEUS_EXT0_GPIO(3),
444 .name = "zeus:yellow:2",
445 .default_trigger = "default-on",
446 .gpio = ZEUS_EXT0_GPIO(4),
450 .name = "zeus:yellow:3",
451 .default_trigger = "default-on",
452 .gpio = ZEUS_EXT0_GPIO(5),
457 static struct gpio_led_platform_data zeus_leds_info = {
459 .num_leds = ARRAY_SIZE(zeus_leds),
462 static struct platform_device zeus_leds_device = {
466 .platform_data = &zeus_leds_info,
470 static void zeus_cf_reset(int state)
472 u16 cpld_state = __raw_readw(ZEUS_CPLD_CONTROL);
475 cpld_state |= ZEUS_CPLD_CONTROL_CF_RST;
477 cpld_state &= ~ZEUS_CPLD_CONTROL_CF_RST;
479 __raw_writew(cpld_state, ZEUS_CPLD_CONTROL);
482 static struct arcom_pcmcia_pdata zeus_pcmcia_info = {
483 .cd_gpio = ZEUS_CF_CD_GPIO,
484 .rdy_gpio = ZEUS_CF_RDY_GPIO,
485 .pwr_gpio = ZEUS_CF_PWEN_GPIO,
486 .reset = zeus_cf_reset,
489 static struct platform_device zeus_pcmcia_device = {
490 .name = "zeus-pcmcia",
493 .platform_data = &zeus_pcmcia_info,
497 static struct resource zeus_max6369_resource = {
498 .start = ZEUS_CPLD_EXTWDOG_PHYS,
499 .end = ZEUS_CPLD_EXTWDOG_PHYS,
500 .flags = IORESOURCE_MEM,
503 struct platform_device zeus_max6369_device = {
504 .name = "max6369_wdt",
506 .resource = &zeus_max6369_resource,
510 static struct platform_device *zeus_devices[] __initdata = {
512 &zeus_mtd_devices[0],
518 &zeus_max6369_device,
522 static pxa2xx_audio_ops_t zeus_ac97_info = {
531 static int zeus_ohci_init(struct device *dev)
535 /* Switch on port 2. */
536 if ((err = gpio_request(ZEUS_USB2_PWREN_GPIO, "USB2_PWREN"))) {
537 dev_err(dev, "Can't request USB2_PWREN\n");
541 if ((err = gpio_direction_output(ZEUS_USB2_PWREN_GPIO, 1))) {
542 gpio_free(ZEUS_USB2_PWREN_GPIO);
543 dev_err(dev, "Can't enable USB2_PWREN\n");
547 /* Port 2 is shared between host and client interface. */
548 UP2OCR = UP2OCR_HXOE | UP2OCR_HXS | UP2OCR_DMPDE | UP2OCR_DPPDE;
553 static void zeus_ohci_exit(struct device *dev)
555 /* Power-off port 2 */
556 gpio_direction_output(ZEUS_USB2_PWREN_GPIO, 0);
557 gpio_free(ZEUS_USB2_PWREN_GPIO);
560 static struct pxaohci_platform_data zeus_ohci_platform_data = {
561 .port_mode = PMM_NPS_MODE,
562 /* Clear Power Control Polarity Low and set Power Sense
563 * Polarity Low. Supply power to USB ports. */
564 .flags = ENABLE_PORT_ALL | POWER_SENSE_LOW,
565 .init = zeus_ohci_init,
566 .exit = zeus_ohci_exit,
573 static void zeus_lcd_power(int on, struct fb_var_screeninfo *si)
575 gpio_set_value(ZEUS_LCD_EN_GPIO, on);
578 static void zeus_backlight_power(int on)
580 gpio_set_value(ZEUS_BKLEN_GPIO, on);
583 static int zeus_setup_fb_gpios(void)
587 if ((err = gpio_request(ZEUS_LCD_EN_GPIO, "LCD_EN")))
590 if ((err = gpio_direction_output(ZEUS_LCD_EN_GPIO, 0)))
593 if ((err = gpio_request(ZEUS_BKLEN_GPIO, "BKLEN")))
596 if ((err = gpio_direction_output(ZEUS_BKLEN_GPIO, 0)))
602 gpio_free(ZEUS_BKLEN_GPIO);
604 gpio_free(ZEUS_LCD_EN_GPIO);
609 static struct pxafb_mode_info zeus_fb_mode_info[] = {
630 static struct pxafb_mach_info zeus_fb_info = {
631 .modes = zeus_fb_mode_info,
633 .lcd_conn = LCD_COLOR_TFT_16BPP | LCD_PCLK_EDGE_FALL,
634 .pxafb_lcd_power = zeus_lcd_power,
635 .pxafb_backlight_power = zeus_backlight_power,
641 * The card detect interrupt isn't debounced so we delay it by 250ms
642 * to give the card a chance to fully insert/eject.
645 static struct pxamci_platform_data zeus_mci_platform_data = {
646 .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
647 .detect_delay_ms = 250,
648 .gpio_card_detect = ZEUS_MMC_CD_GPIO,
649 .gpio_card_ro = ZEUS_MMC_WP_GPIO,
650 .gpio_card_ro_invert = 1,
655 * USB Device Controller
657 static void zeus_udc_command(int cmd)
660 case PXA2XX_UDC_CMD_DISCONNECT:
661 pr_info("zeus: disconnecting USB client\n");
662 UP2OCR = UP2OCR_HXOE | UP2OCR_HXS | UP2OCR_DMPDE | UP2OCR_DPPDE;
665 case PXA2XX_UDC_CMD_CONNECT:
666 pr_info("zeus: connecting USB client\n");
667 UP2OCR = UP2OCR_HXOE | UP2OCR_DPPUE;
672 static struct pxa2xx_udc_mach_info zeus_udc_info = {
673 .udc_command = zeus_udc_command,
677 static void zeus_power_off(void)
680 cpu_suspend(PWRMODE_DEEPSLEEP, pxa27x_finish_suspend);
683 #define zeus_power_off NULL
686 #ifdef CONFIG_APM_EMULATION
687 static void zeus_get_power_status(struct apm_power_info *info)
689 /* Power supply is always present */
690 info->ac_line_status = APM_AC_ONLINE;
691 info->battery_status = APM_BATTERY_STATUS_NOT_PRESENT;
692 info->battery_flag = APM_BATTERY_FLAG_NOT_PRESENT;
695 static inline void zeus_setup_apm(void)
697 apm_get_power_status = zeus_get_power_status;
700 static inline void zeus_setup_apm(void)
705 static int zeus_get_pcb_info(struct i2c_client *client, unsigned gpio,
706 unsigned ngpio, void *context)
711 for (i = 0; i < 8; i++) {
712 int pcb_bit = gpio + i + 8;
714 if (gpio_request(pcb_bit, "pcb info")) {
715 dev_err(&client->dev, "Can't request pcb info %d\n", i);
719 if (gpio_direction_input(pcb_bit)) {
720 dev_err(&client->dev, "Can't read pcb info %d\n", i);
725 pcb_info |= !!gpio_get_value(pcb_bit) << i;
730 dev_info(&client->dev, "Zeus PCB version %d issue %d\n",
731 pcb_info >> 4, pcb_info & 0xf);
736 static struct pca953x_platform_data zeus_pca953x_pdata[] = {
737 [0] = { .gpio_base = ZEUS_EXT0_GPIO_BASE, },
739 .gpio_base = ZEUS_EXT1_GPIO_BASE,
740 .setup = zeus_get_pcb_info,
742 [2] = { .gpio_base = ZEUS_USER_GPIO_BASE, },
745 static struct i2c_board_info __initdata zeus_i2c_devices[] = {
747 I2C_BOARD_INFO("pca9535", 0x21),
748 .platform_data = &zeus_pca953x_pdata[0],
751 I2C_BOARD_INFO("pca9535", 0x22),
752 .platform_data = &zeus_pca953x_pdata[1],
755 I2C_BOARD_INFO("pca9535", 0x20),
756 .platform_data = &zeus_pca953x_pdata[2],
757 .irq = PXA_GPIO_TO_IRQ(ZEUS_EXTGPIO_GPIO),
759 { I2C_BOARD_INFO("lm75a", 0x48) },
760 { I2C_BOARD_INFO("24c01", 0x50) },
761 { I2C_BOARD_INFO("isl1208", 0x6f) },
764 static mfp_cfg_t zeus_pin_config[] __initdata = {
767 GPIO29_AC97_SDATA_IN_0,
768 GPIO30_AC97_SDATA_OUT,
811 GPIO36_GPIO, /* CF CD */
812 GPIO97_GPIO, /* CF PWREN */
813 GPIO99_GPIO, /* CF RDY */
817 * DM9k MSCx settings: SRAM, 16 bits
818 * 17 cycles delay first access
819 * 5 cycles delay next access
820 * 13 cycles recovery time
823 #define DM9K_MSC_VALUE 0xe4c9
825 static void __init zeus_init(void)
827 u16 dm9000_msc = DM9K_MSC_VALUE;
830 system_rev = __raw_readw(ZEUS_CPLD_VERSION);
831 pr_info("Zeus CPLD V%dI%d\n", (system_rev & 0xf0) >> 4, (system_rev & 0x0f));
833 /* Fix timings for dm9000s (CS1/CS2)*/
834 msc0 = (__raw_readl(MSC0) & 0x0000ffff) | (dm9000_msc << 16);
835 msc1 = (__raw_readl(MSC1) & 0xffff0000) | dm9000_msc;
836 __raw_writel(msc0, MSC0);
837 __raw_writel(msc1, MSC1);
839 pm_power_off = zeus_power_off;
842 pxa2xx_mfp_config(ARRAY_AND_SIZE(zeus_pin_config));
844 platform_add_devices(zeus_devices, ARRAY_SIZE(zeus_devices));
846 pxa_set_ohci_info(&zeus_ohci_platform_data);
848 if (zeus_setup_fb_gpios())
849 pr_err("Failed to setup fb gpios\n");
851 pxa_set_fb_info(NULL, &zeus_fb_info);
853 pxa_set_mci_info(&zeus_mci_platform_data);
854 pxa_set_udc_info(&zeus_udc_info);
855 pxa_set_ac97_info(&zeus_ac97_info);
856 pxa_set_i2c_info(NULL);
857 i2c_register_board_info(0, ARRAY_AND_SIZE(zeus_i2c_devices));
858 pxa2xx_set_spi_info(3, &pxa2xx_spi_ssp3_master_info);
859 spi_register_board_info(zeus_spi_board_info, ARRAY_SIZE(zeus_spi_board_info));
862 static struct map_desc zeus_io_desc[] __initdata = {
864 .virtual = (unsigned long)ZEUS_CPLD_VERSION,
865 .pfn = __phys_to_pfn(ZEUS_CPLD_VERSION_PHYS),
870 .virtual = (unsigned long)ZEUS_CPLD_ISA_IRQ,
871 .pfn = __phys_to_pfn(ZEUS_CPLD_ISA_IRQ_PHYS),
876 .virtual = (unsigned long)ZEUS_CPLD_CONTROL,
877 .pfn = __phys_to_pfn(ZEUS_CPLD_CONTROL_PHYS),
882 .virtual = (unsigned long)ZEUS_PC104IO,
883 .pfn = __phys_to_pfn(ZEUS_PC104IO_PHYS),
884 .length = 0x00800000,
889 static void __init zeus_map_io(void)
893 iotable_init(zeus_io_desc, ARRAY_SIZE(zeus_io_desc));
895 /* Clear PSPR to ensure a full restart on wake-up. */
898 /* enable internal 32.768Khz oscillator (ignore OSCC_OOK) */
901 /* Some clock cycles later (from OSCC_ON), programme PCFR (OPDE...).
902 * float chip selects and PCMCIA */
903 PCFR = PCFR_OPDE | PCFR_DC_EN | PCFR_FS | PCFR_FP;
906 MACHINE_START(ARCOM_ZEUS, "Arcom/Eurotech ZEUS")
908 .atag_offset = 0x100,
909 .map_io = zeus_map_io,
910 .nr_irqs = ZEUS_NR_IRQS,
911 .init_irq = zeus_init_irq,
912 .handle_irq = pxa27x_handle_irq,
913 .init_time = pxa_timer_init,
914 .init_machine = zeus_init,
915 .restart = pxa_restart,