blob: 5a2a82148d8d4f633c644f951ca87f252bdce09b [file] [log] [blame]
Ralf Baechlee7c47822007-07-10 17:33:01 +01001/*
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
4 * for more details.
5 *
6 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
7 */
Ralf Baechlee9712902007-05-24 12:54:04 +01008#include <linux/init.h>
9#include <linux/platform_device.h>
Ralf Baechlee7c47822007-07-10 17:33:01 +010010#include <linux/serial_8250.h>
Joshua Kinard15beb692015-04-16 12:49:09 -070011#include <linux/rtc/ds1685.h>
Ralf Baechlee7c47822007-07-10 17:33:01 +010012
13#include <asm/ip32/mace.h>
14#include <asm/ip32/ip32_ints.h>
15
Joshua Kinard15beb692015-04-16 12:49:09 -070016extern void ip32_prepare_poweroff(void);
17
Thomas Bogendoerferc9900812008-01-05 12:13:11 +010018#define MACEISA_SERIAL1_OFFS offsetof(struct sgi_mace, isa.serial1)
19#define MACEISA_SERIAL2_OFFS offsetof(struct sgi_mace, isa.serial2)
20
21#define MACE_PORT(offset,_irq) \
Ralf Baechlee7c47822007-07-10 17:33:01 +010022{ \
Thomas Bogendoerferc9900812008-01-05 12:13:11 +010023 .mapbase = MACE_BASE + offset, \
24 .irq = _irq, \
Ralf Baechlee7c47822007-07-10 17:33:01 +010025 .uartclk = 1843200, \
26 .iotype = UPIO_MEM, \
Thomas Bogendoerferc9900812008-01-05 12:13:11 +010027 .flags = UPF_SKIP_TEST|UPF_IOREMAP, \
Ralf Baechlee7c47822007-07-10 17:33:01 +010028 .regshift = 8, \
29}
30
31static struct plat_serial8250_port uart8250_data[] = {
Thomas Bogendoerferc9900812008-01-05 12:13:11 +010032 MACE_PORT(MACEISA_SERIAL1_OFFS, MACEISA_SERIAL1_IRQ),
33 MACE_PORT(MACEISA_SERIAL2_OFFS, MACEISA_SERIAL2_IRQ),
Ralf Baechlee7c47822007-07-10 17:33:01 +010034 { },
35};
36
37static struct platform_device uart8250_device = {
38 .name = "serial8250",
39 .id = PLAT8250_DEV_PLATFORM,
40 .dev = {
41 .platform_data = uart8250_data,
42 },
43};
44
45static int __init uart8250_init(void)
46{
Ralf Baechlee7c47822007-07-10 17:33:01 +010047 return platform_device_register(&uart8250_device);
48}
49
50device_initcall(uart8250_init);
Ralf Baechlee9712902007-05-24 12:54:04 +010051
52static __init int meth_devinit(void)
53{
54 struct platform_device *pd;
55 int ret;
56
57 pd = platform_device_alloc("meth", -1);
58 if (!pd)
59 return -ENOMEM;
60
61 ret = platform_device_add(pd);
62 if (ret)
63 platform_device_put(pd);
64
65 return ret;
66}
67
68device_initcall(meth_devinit);
Ralf Baechlee7c47822007-07-10 17:33:01 +010069
Thomas Bogendoerfer8fa9cc12008-07-05 01:12:13 +020070static __init int sgio2audio_devinit(void)
71{
72 struct platform_device *pd;
73 int ret;
74
75 pd = platform_device_alloc("sgio2audio", -1);
76 if (!pd)
77 return -ENOMEM;
78
79 ret = platform_device_add(pd);
80 if (ret)
81 platform_device_put(pd);
82
83 return ret;
84}
85
86device_initcall(sgio2audio_devinit);
87
88static __init int sgio2btns_devinit(void)
89{
Thomas Bogendoerfer36a0a3c2008-07-16 15:18:58 +020090 return IS_ERR(platform_device_register_simple("sgibtns", -1, NULL, 0));
Thomas Bogendoerfer8fa9cc12008-07-05 01:12:13 +020091}
92
93device_initcall(sgio2btns_devinit);
94
Joshua Kinard15beb692015-04-16 12:49:09 -070095#define MACE_RTC_RES_START (MACE_BASE + offsetof(struct sgi_mace, isa.rtc))
96#define MACE_RTC_RES_END (MACE_RTC_RES_START + 32767)
97
98static struct resource ip32_rtc_resources[] = {
Thomas Bogendoerfer656e9502008-09-23 00:53:20 +020099 {
Joshua Kinard15beb692015-04-16 12:49:09 -0700100 .start = MACEISA_RTC_IRQ,
101 .end = MACEISA_RTC_IRQ,
102 .flags = IORESOURCE_IRQ
103 }, {
104 .start = MACE_RTC_RES_START,
105 .end = MACE_RTC_RES_END,
106 .flags = IORESOURCE_MEM,
Thomas Bogendoerfer656e9502008-09-23 00:53:20 +0200107 }
108};
109
Joshua Kinard15beb692015-04-16 12:49:09 -0700110/* RTC registers on IP32 are each padded by 256 bytes (0x100). */
111static struct ds1685_rtc_platform_data
112ip32_rtc_platform_data[] = {
113 {
114 .regstep = 0x100,
115 .bcd_mode = true,
116 .no_irq = false,
117 .uie_unsupported = false,
118 .alloc_io_resources = true,
119 .plat_prepare_poweroff = ip32_prepare_poweroff,
120 },
121};
122
123struct platform_device ip32_rtc_device = {
124 .name = "rtc-ds1685",
125 .id = -1,
126 .dev = {
127 .platform_data = ip32_rtc_platform_data,
128 },
129 .num_resources = ARRAY_SIZE(ip32_rtc_resources),
130 .resource = ip32_rtc_resources,
131};
132
Joshua Kinard43056892015-04-19 21:45:25 -0400133static __init int sgio2_rtc_devinit(void)
Thomas Bogendoerfer656e9502008-09-23 00:53:20 +0200134{
Joshua Kinard15beb692015-04-16 12:49:09 -0700135 return platform_device_register(&ip32_rtc_device);
Thomas Bogendoerfer656e9502008-09-23 00:53:20 +0200136}
137
Joshua Kinard43056892015-04-19 21:45:25 -0400138device_initcall(sgio2_rtc_devinit);