blob: bbe8d585334891c5e5b40555aed1a6353648b78c [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. Rozycki45e02b52006-10-06 00:44:02 -07007 * Copyright (c) 2006 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
64/*
65 * swarm_ide_probe - if the board header indicates the existence of
66 * Generic Bus IDE, allocate a HWIF for it.
67 */
68static int __devinit swarm_ide_probe(struct device *dev)
69{
70 ide_hwif_t *hwif;
71 u8 __iomem *base;
72 phys_t offset, size;
73 int i;
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +020074 u8 idx[4] = { 0xff, 0xff, 0xff, 0xff };
Ralf Baechle4237f222005-11-17 16:23:50 +000075
76 if (!SIBYTE_HAVE_IDE)
77 return -ENODEV;
78
Bartlomiej Zolnierkiewicz7d9f3d52008-04-26 17:36:32 +020079 hwif = ide_find_port();
80 if (hwif == NULL) {
Ralf Baechle4237f222005-11-17 16:23:50 +000081 printk(KERN_ERR DRV_NAME ": no free slot for interface\n");
82 return -ENOMEM;
83 }
84
Ralf Baechle4237f222005-11-17 16:23:50 +000085 base = ioremap(A_IO_EXT_BASE, 0x800);
86 offset = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_START_ADDR, IDE_CS));
87 size = __raw_readq(base + R_IO_EXT_REG(R_IO_EXT_MULT_SIZE, IDE_CS));
88 iounmap(base);
89
90 offset = G_IO_START_ADDR(offset) << S_IO_ADDRBASE;
91 size = (G_IO_MULT_SIZE(size) + 1) << S_IO_REGSIZE;
92 if (offset < A_PHYS_GENBUS || offset >= A_PHYS_GENBUS_END) {
93 printk(KERN_INFO DRV_NAME
94 ": IDE interface at GenBus disabled\n");
95 return -EBUSY;
96 }
97
98 printk(KERN_INFO DRV_NAME ": IDE interface at GenBus slot %i\n",
99 IDE_CS);
100
101 swarm_ide_resource.start = offset;
102 swarm_ide_resource.end = offset + size - 1;
103 if (request_resource(&iomem_resource, &swarm_ide_resource)) {
104 printk(KERN_ERR DRV_NAME
105 ": can't request I/O memory resource\n");
106 return -EBUSY;
107 }
108
109 base = ioremap(offset, size);
110
111 /* Setup MMIO ops. */
112 default_hwif_mmiops(hwif);
113 /* Prevent resource map manipulation. */
Bartlomiej Zolnierkiewicz2ad1e552007-02-17 02:40:25 +0100114 hwif->mmio = 1;
Bartlomiej Zolnierkiewiczaae73b42008-01-26 20:13:04 +0100115 hwif->chipset = ide_generic;
Ralf Baechle4237f222005-11-17 16:23:50 +0000116 hwif->noprobe = 0;
117
118 for (i = IDE_DATA_OFFSET; i <= IDE_STATUS_OFFSET; i++)
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200119 hwif->io_ports[i] =
Ralf Baechle4237f222005-11-17 16:23:50 +0000120 (unsigned long)(base + ((0x1f0 + i) << 5));
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200121 hwif->io_ports[IDE_CONTROL_OFFSET] =
Ralf Baechle4237f222005-11-17 16:23:50 +0000122 (unsigned long)(base + (0x3f6 << 5));
Bartlomiej Zolnierkiewicz9239b332007-10-20 00:32:33 +0200123 hwif->irq = K_INT_GB_IDE;
Ralf Baechle4237f222005-11-17 16:23:50 +0000124
Bartlomiej Zolnierkiewicz8447d9d2007-10-20 00:32:31 +0200125 idx[0] = hwif->index;
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200126
Bartlomiej Zolnierkiewiczc413b9b2008-02-02 19:56:31 +0100127 ide_device_add(idx, NULL);
Bartlomiej Zolnierkiewicz5cbf79c2007-05-10 00:01:11 +0200128
Ralf Baechle4237f222005-11-17 16:23:50 +0000129 dev_set_drvdata(dev, hwif);
130
131 return 0;
132}
133
134static struct device_driver swarm_ide_driver = {
135 .name = swarm_ide_string,
136 .bus = &platform_bus_type,
137 .probe = swarm_ide_probe,
138};
139
140static void swarm_ide_platform_release(struct device *device)
141{
142 struct platform_device *pldev;
143
144 /* free device */
145 pldev = to_platform_device(device);
146 kfree(pldev);
147}
148
149static int __devinit swarm_ide_init_module(void)
150{
151 struct platform_device *pldev;
152 int err;
153
154 printk(KERN_INFO "SWARM IDE driver\n");
155
156 if (driver_register(&swarm_ide_driver)) {
157 printk(KERN_ERR "Driver registration failed\n");
158 err = -ENODEV;
159 goto out;
160 }
161
Yoann Padioleaudd00cc42007-07-19 01:49:03 -0700162 if (!(pldev = kzalloc(sizeof (*pldev), GFP_KERNEL))) {
Ralf Baechle4237f222005-11-17 16:23:50 +0000163 err = -ENOMEM;
164 goto out_unregister_driver;
165 }
166
Ralf Baechle4237f222005-11-17 16:23:50 +0000167 pldev->name = swarm_ide_string;
168 pldev->id = 0;
169 pldev->dev.release = swarm_ide_platform_release;
170
171 if (platform_device_register(pldev)) {
172 err = -ENODEV;
173 goto out_free_pldev;
174 }
175
176 if (!pldev->dev.driver) {
177 /*
178 * The driver was not bound to this device, there was
179 * no hardware at this address. Unregister it, as the
180 * release fuction will take care of freeing the
181 * allocated structure
182 */
183 platform_device_unregister (pldev);
184 }
185
186 swarm_ide_dev = pldev;
187
188 return 0;
189
190out_free_pldev:
191 kfree(pldev);
192
193out_unregister_driver:
194 driver_unregister(&swarm_ide_driver);
195out:
196 return err;
197}
198
199module_init(swarm_ide_init_module);