blob: bae92acea3433f73a7ffefe9d8cd2ea5efdd1ffc [file] [log] [blame]
Ralf Baechle4237f222005-11-17 16:23:50 +00001/*
2 * Copyright (C) 2001, 2002, 2003 Broadcom Corporation
3 * Copyright (C) 2004 MontaVista Software Inc.
4 * Author: Manish Lachwani, mlachwani@mvista.com
5 * Copyright (C) 2004 MIPS Technologies, Inc. All rights reserved.
6 * Author: Maciej W. Rozycki <macro@mips.com>
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +02007 * Copyright (c) 2006, 2008 Maciej W. Rozycki
Ralf Baechle4237f222005-11-17 16:23:50 +00008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24/*
25 * Derived loosely from ide-pmac.c, so:
26 * Copyright (C) 1998 Paul Mackerras.
27 * Copyright (C) 1995-1998 Mark Lord
28 */
29
30/*
31 * Boards with SiByte processors so far have supported IDE devices via
32 * the Generic Bus, PCI bus, and built-in PCMCIA interface. In all
33 * cases, byte-swapping must be avoided for these devices (whereas
34 * other PCI devices, for example, will require swapping). Any
35 * SiByte-targetted kernel including IDE support will include this
36 * file. Probing of a Generic Bus for an IDE device is controlled by
37 * the definition of "SIBYTE_HAVE_IDE", which is provided by
38 * <asm/sibyte/board.h> for Broadcom boards.
39 */
40
41#include <linux/ide.h>
42#include <linux/ioport.h>
43#include <linux/kernel.h>
44#include <linux/types.h>
45#include <linux/platform_device.h>
46
47#include <asm/io.h>
48
49#include <asm/sibyte/board.h>
50#include <asm/sibyte/sb1250_genbus.h>
51#include <asm/sibyte/sb1250_regs.h>
52
53#define DRV_NAME "ide-swarm"
54
55static char swarm_ide_string[] = DRV_NAME;
56
57static struct resource swarm_ide_resource = {
58 .name = "SWARM GenBus IDE",
59 .flags = IORESOURCE_MEM,
60};
61
62static struct platform_device *swarm_ide_dev;
63
Bartlomiej Zolnierkiewicze48905e2008-07-16 20:33:41 +020064static const struct ide_port_info swarm_port_info = {
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +020065 .name = DRV_NAME,
Bartlomiej Zolnierkiewicze48905e2008-07-16 20:33:41 +020066 .host_flags = IDE_HFLAG_MMIO | IDE_HFLAG_NO_DMA,
67};
68
Ralf Baechle4237f222005-11-17 16:23:50 +000069/*
70 * swarm_ide_probe - if the board header indicates the existence of
71 * Generic Bus IDE, allocate a HWIF for it.
72 */
73static int __devinit swarm_ide_probe(struct device *dev)
74{
75 ide_hwif_t *hwif;
76 u8 __iomem *base;
77 phys_t offset, size;
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +020078 hw_regs_t hw;
Ralf Baechle4237f222005-11-17 16:23:50 +000079 int i;
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +020080 u8 idx[] = { 0xff, 0xff, 0xff, 0xff };
Ralf Baechle4237f222005-11-17 16:23:50 +000081
82 if (!SIBYTE_HAVE_IDE)
83 return -ENODEV;
84
Bartlomiej Zolnierkiewiczeb3aff52008-07-16 20:33:42 +020085 hwif = ide_find_port_slot(&swarm_port_info);
86 if (hwif == NULL)
Ralf Baechle4237f222005-11-17 16:23:50 +000087 return -ENOMEM;
Ralf Baechle4237f222005-11-17 16:23:50 +000088
Ralf Baechle4237f222005-11-17 16:23:50 +000089 base = ioremap(A_IO_EXT_BASE, 0x800);
90 offset = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS));
91 size = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_MULT_SIZE, IDE_CS));
92 iounmap(base);
93
94 offset = G_IO_START_ADDR(offset) << S_IO_ADDRBASE;
95 size = (G_IO_MULT_SIZE(size) + 1) << S_IO_REGSIZE;
96 if (offset < A_PHYS_GENBUS || offset >= A_PHYS_GENBUS_END) {
97 printk(KERN_INFO DRV_NAME
98 ": IDE interface at GenBus disabled\n");
99 return -EBUSY;
100 }
101
102 printk(KERN_INFO DRV_NAME ": IDE interface at GenBus slot %i\n",
103 IDE_CS);
104
105 swarm_ide_resource.start = offset;
106 swarm_ide_resource.end = offset + size - 1;
107 if (request_resource(&iomem_resource, &swarm_ide_resource)) {
108 printk(KERN_ERR DRV_NAME
109 ": can't request I/O memory resource\n");
110 return -EBUSY;
111 }
112
113 base = ioremap(offset, size);
114
115 /* Setup MMIO ops. */
116 default_hwif_mmiops(hwif);
Bartlomiej Zolnierkiewicz3dd89a92008-04-26 22:25:19 +0200117
Bartlomiej Zolnierkiewicz4c3032d2008-04-27 15:38:32 +0200118 for (i = 0; i <= 7; i++)
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +0200119 hw.io_ports_array[i] =
Ralf Baechle4237f222005-11-17 16:23:50 +0000120 (unsigned long)(base + ((0x1f0 + i) << 5));
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +0200121 hw.io_ports.ctl_addr =
Ralf Baechle4237f222005-11-17 16:23:50 +0000122 (unsigned long)(base + (0x3f6 << 5));
Maciej W. Rozycki4d4423c2008-05-14 23:06:14 +0200123 hw.irq = K_INT_GB_IDE;
124 hw.chipset = ide_generic;
125
126 ide_init_port_hw(hwif, &hw);
Ralf Baechle4237f222005-11-17 16:23:50 +0000127
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200128 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200129
Bartlomiej Zolnierkiewicze48905e2008-07-16 20:33:41 +0200130 ide_device_add(idx, &swarm_port_info);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200131
Ralf Baechle4237f222005-11-17 16:23:50 +0000132 dev_set_drvdata(dev, hwif);
133
134 return 0;
135}
136
137static struct device_driver swarm_ide_driver = {
138 .name = swarm_ide_string,
139 .bus = &platform_bus_type,
140 .probe = swarm_ide_probe,
141};
142
143static void swarm_ide_platform_release(struct device *device)
144{
145 struct platform_device *pldev;
146
147 /* free device */
148 pldev = to_platform_device(device);
149 kfree(pldev);
150}
151
152static int __devinit swarm_ide_init_module(void)
153{
154 struct platform_device *pldev;
155 int err;
156
157 printk(KERN_INFO "SWARM IDE driver\n");
158
159 if (driver_register(&swarm_ide_driver)) {
160 printk(KERN_ERR "Driver registration failed\n");
161 err = -ENODEV;
162 goto out;
163 }
164
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700165 if (!(pldev = kzalloc(sizeof (*pldev), GFP_KERNEL))) {
Ralf Baechle4237f222005-11-17 16:23:50 +0000166 err = -ENOMEM;
167 goto out_unregister_driver;
168 }
169
Ralf Baechle4237f222005-11-17 16:23:50 +0000170 pldev->name = swarm_ide_string;
171 pldev->id = 0;
172 pldev->dev.release = swarm_ide_platform_release;
173
174 if (platform_device_register(pldev)) {
175 err = -ENODEV;
176 goto out_free_pldev;
177 }
178
179 if (!pldev->dev.driver) {
180 /*
181 * The driver was not bound to this device, there was
182 * no hardware at this address. Unregister it, as the
183 * release fuction will take care of freeing the
184 * allocated structure
185 */
186 platform_device_unregister (pldev);
187 }
188
189 swarm_ide_dev = pldev;
190
191 return 0;
192
193out_free_pldev:
194 kfree(pldev);
195
196out_unregister_driver:
197 driver_unregister(&swarm_ide_driver);
198out:
199 return err;
200}
201
202module_init(swarm_ide_init_module);