2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
8 #include <linux/init.h>
9 #include <linux/platform_device.h>
10 #include <linux/serial_8250.h>
11 #include <linux/rtc/ds1685.h>
13 #include <asm/ip32/mace.h>
14 #include <asm/ip32/ip32_ints.h>
16 extern void ip32_prepare_poweroff(void);
18 #define MACEISA_SERIAL1_OFFS offsetof(struct sgi_mace, isa.serial1)
19 #define MACEISA_SERIAL2_OFFS offsetof(struct sgi_mace, isa.serial2)
21 #define MACE_PORT(offset,_irq) \
23 .mapbase = MACE_BASE + offset, \
27 .flags = UPF_SKIP_TEST|UPF_IOREMAP, \
31 static struct plat_serial8250_port uart8250_data
[] = {
32 MACE_PORT(MACEISA_SERIAL1_OFFS
, MACEISA_SERIAL1_IRQ
),
33 MACE_PORT(MACEISA_SERIAL2_OFFS
, MACEISA_SERIAL2_IRQ
),
37 static struct platform_device uart8250_device
= {
39 .id
= PLAT8250_DEV_PLATFORM
,
41 .platform_data
= uart8250_data
,
45 static int __init
uart8250_init(void)
47 return platform_device_register(&uart8250_device
);
50 device_initcall(uart8250_init
);
52 static __init
int meth_devinit(void)
54 struct platform_device
*pd
;
57 pd
= platform_device_alloc("meth", -1);
61 ret
= platform_device_add(pd
);
63 platform_device_put(pd
);
68 device_initcall(meth_devinit
);
70 static __init
int sgio2audio_devinit(void)
72 struct platform_device
*pd
;
75 pd
= platform_device_alloc("sgio2audio", -1);
79 ret
= platform_device_add(pd
);
81 platform_device_put(pd
);
86 device_initcall(sgio2audio_devinit
);
88 static __init
int sgio2btns_devinit(void)
90 return IS_ERR(platform_device_register_simple("sgibtns", -1, NULL
, 0));
93 device_initcall(sgio2btns_devinit
);
95 #define MACE_RTC_RES_START (MACE_BASE + offsetof(struct sgi_mace, isa.rtc))
96 #define MACE_RTC_RES_END (MACE_RTC_RES_START + 32767)
98 static struct resource ip32_rtc_resources
[] = {
100 .start
= MACEISA_RTC_IRQ
,
101 .end
= MACEISA_RTC_IRQ
,
102 .flags
= IORESOURCE_IRQ
104 .start
= MACE_RTC_RES_START
,
105 .end
= MACE_RTC_RES_END
,
106 .flags
= IORESOURCE_MEM
,
110 /* RTC registers on IP32 are each padded by 256 bytes (0x100). */
111 static struct ds1685_rtc_platform_data
112 ip32_rtc_platform_data
[] = {
117 .uie_unsupported
= false,
118 .access_type
= ds1685_reg_direct
,
119 .plat_prepare_poweroff
= ip32_prepare_poweroff
,
123 struct platform_device ip32_rtc_device
= {
124 .name
= "rtc-ds1685",
127 .platform_data
= ip32_rtc_platform_data
,
129 .num_resources
= ARRAY_SIZE(ip32_rtc_resources
),
130 .resource
= ip32_rtc_resources
,
133 static __init
int sgio2_rtc_devinit(void)
135 return platform_device_register(&ip32_rtc_device
);
138 device_initcall(sgio2_rtc_devinit
);