1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright 2002 by Peter Grehan. All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 1. Redistributions of source code must retain the above copyright 10 * notice, this list of conditions and the following disclaimer. 11 * 2. Redistributions in binary form must reproduce the above copyright 12 * notice, this list of conditions and the following disclaimer in the 13 * documentation and/or other materials provided with the distribution. 14 * 3. The name of the author may not be used to endorse or promote products 15 * derived from this software without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 22 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 23 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 24 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 /* 32 * PSIM local bus ATA controller 33 */ 34 #include <sys/param.h> 35 #include <sys/systm.h> 36 #include <sys/kernel.h> 37 #include <sys/module.h> 38 #include <sys/bus.h> 39 #include <sys/malloc.h> 40 #include <sys/sema.h> 41 #include <sys/taskqueue.h> 42 #include <machine/stdarg.h> 43 #include <vm/uma.h> 44 #include <machine/resource.h> 45 #include <machine/bus.h> 46 #include <sys/rman.h> 47 #include <sys/ata.h> 48 #include <dev/ata/ata-all.h> 49 #include <ata_if.h> 50 51 #include <dev/ofw/openfirm.h> 52 #include <powerpc/psim/iobusvar.h> 53 54 /* 55 * Define the iobus ata bus attachment. This creates a pseudo-bus that 56 * the ATA device can be attached to 57 */ 58 static int ata_iobus_attach(device_t dev); 59 static int ata_iobus_probe(device_t dev); 60 static int ata_iobus_print_child(device_t dev, device_t child); 61 struct resource *ata_iobus_alloc_resource(device_t, device_t, int, int *, 62 rman_res_t, rman_res_t, rman_res_t, 63 u_int); 64 static int ata_iobus_release_resource(device_t, device_t, struct resource *); 65 66 static device_method_t ata_iobus_methods[] = { 67 /* Device interface */ 68 DEVMETHOD(device_probe, ata_iobus_probe), 69 DEVMETHOD(device_attach, ata_iobus_attach), 70 DEVMETHOD(device_shutdown, bus_generic_shutdown), 71 DEVMETHOD(device_suspend, bus_generic_suspend), 72 DEVMETHOD(device_resume, bus_generic_resume), 73 74 /* Bus methods */ 75 DEVMETHOD(bus_print_child, ata_iobus_print_child), 76 DEVMETHOD(bus_alloc_resource, ata_iobus_alloc_resource), 77 DEVMETHOD(bus_release_resource, ata_iobus_release_resource), 78 DEVMETHOD(bus_activate_resource, bus_generic_activate_resource), 79 DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource), 80 DEVMETHOD(bus_setup_intr, bus_generic_setup_intr), 81 DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr), 82 83 DEVMETHOD_END 84 }; 85 86 static driver_t ata_iobus_driver = { 87 "ataiobus", 88 ata_iobus_methods, 89 0, 90 }; 91 92 DRIVER_MODULE(ataiobus, iobus, ata_iobus_driver, NULL, NULL); 93 MODULE_DEPEND(ata, ata, 1, 1, 1); 94 95 static int 96 ata_iobus_probe(device_t dev) 97 { 98 char *type = iobus_get_name(dev); 99 100 if (strncmp(type, "ata", 3) != 0) 101 return (ENXIO); 102 103 device_set_desc(dev, "PSIM ATA Controller"); 104 return (0); 105 } 106 107 static int 108 ata_iobus_attach(device_t dev) 109 { 110 /* 111 * Add a single child per controller. Should be able 112 * to add two 113 */ 114 device_add_child(dev, "ata", DEVICE_UNIT_ANY); 115 bus_attach_children(dev); 116 return (0); 117 } 118 119 static int 120 ata_iobus_print_child(device_t dev, device_t child) 121 { 122 int retval = 0; 123 124 retval += bus_print_child_header(dev, child); 125 /* irq ? */ 126 retval += bus_print_child_footer(dev, child); 127 128 return (retval); 129 } 130 131 struct resource * 132 ata_iobus_alloc_resource(device_t dev, device_t child, int type, int *rid, 133 rman_res_t start, rman_res_t end, rman_res_t count, 134 u_int flags) 135 { 136 struct resource *res = NULL; 137 int myrid; 138 u_int *ofw_regs; 139 140 ofw_regs = iobus_get_regs(dev); 141 142 /* 143 * The reg array for the PSIM ata device has 6 start/size entries: 144 * 0 - unused 145 * 1/2/3 - unused 146 * 4/5/6 - primary command 147 * 7/8/9 - secondary command 148 * 10/11/12 - primary control 149 * 13/14/15 - secondary control 150 * 16/17/18 - primary/secondary dma registers, unimplemented 151 * 152 * The resource values are calculated from these registers 153 */ 154 if (type == SYS_RES_IOPORT) { 155 switch (*rid) { 156 case ATA_IOADDR_RID: 157 myrid = 0; 158 start = ofw_regs[4]; 159 end = start + ATA_IOSIZE - 1; 160 count = ATA_IOSIZE; 161 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 162 SYS_RES_MEMORY, &myrid, 163 start, end, count, flags); 164 break; 165 166 case ATA_CTLADDR_RID: 167 myrid = 0; 168 start = ofw_regs[10]; 169 end = start + ATA_CTLIOSIZE - 1; 170 count = ATA_CTLIOSIZE; 171 res = BUS_ALLOC_RESOURCE(device_get_parent(dev), child, 172 SYS_RES_MEMORY, &myrid, 173 start, end, count, flags); 174 break; 175 176 case ATA_BMADDR_RID: 177 /* DMA not properly supported by psim */ 178 break; 179 } 180 return (res); 181 182 } else if (type == SYS_RES_IRQ && *rid == ATA_IRQ_RID) { 183 /* 184 * Pass this on to the parent 185 */ 186 return (BUS_ALLOC_RESOURCE(device_get_parent(dev), dev, 187 SYS_RES_IRQ, rid, 0, ~0, 1, flags)); 188 189 } else { 190 return (NULL); 191 } 192 } 193 194 static int 195 ata_iobus_release_resource(device_t dev, device_t child, struct resource *r) 196 { 197 /* no hotplug... */ 198 return (0); 199 } 200 201 /* 202 * Define the actual ATA device. This is a sub-bus to the ata-iobus layer 203 * to allow the higher layer bus to massage the resource allocation. 204 */ 205 206 static int ata_iobus_sub_probe(device_t dev); 207 static int ata_iobus_sub_setmode(device_t dev, int target, int mode); 208 209 static device_method_t ata_iobus_sub_methods[] = { 210 /* Device interface */ 211 DEVMETHOD(device_probe, ata_iobus_sub_probe), 212 DEVMETHOD(device_attach, ata_attach), 213 DEVMETHOD(device_detach, ata_detach), 214 DEVMETHOD(device_resume, ata_resume), 215 216 /* ATA interface */ 217 DEVMETHOD(ata_setmode, ata_iobus_sub_setmode), 218 DEVMETHOD_END 219 }; 220 221 static driver_t ata_iobus_sub_driver = { 222 "ata", 223 ata_iobus_sub_methods, 224 sizeof(struct ata_channel), 225 }; 226 227 DRIVER_MODULE(ata, ataiobus, ata_iobus_sub_driver, NULL, NULL); 228 229 static int 230 ata_iobus_sub_probe(device_t dev) 231 { 232 struct ata_channel *ch = device_get_softc(dev); 233 234 /* Only a single unit per controller thus far */ 235 ch->unit = 0; 236 ch->flags = (ATA_USE_16BIT|ATA_NO_SLAVE); 237 ata_generic_hw(dev); 238 239 return ata_probe(dev); 240 } 241 242 static int 243 ata_iobus_sub_setmode(device_t parent, int target, int mode) 244 { 245 /* Only ever PIO mode here... */ 246 return (ATA_PIO); 247 } 248