1 /* $NetBSD: gapspci_pci.c,v 1.1 2001/02/01 01:04:55 thorpej Exp $ */ 2 3 /*- 4 * Copyright (c) 2001 Marcus Comstedt. 5 * Copyright (c) 2001 Jason R. Thorpe. 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 3. All advertising materials mentioning features or use of this software 17 * must display the following acknowledgement: 18 * This product includes software developed by Marcus Comstedt. 19 * 4. Neither the name of The NetBSD Foundation nor the names of its 20 * contributors may be used to endorse or promote products derived 21 * from this software without specific prior written permission. 22 * 23 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 25 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 26 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 27 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 28 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 29 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 30 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 31 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 32 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 33 * POSSIBILITY OF SUCH DAMAGE. 34 */ 35 36 /* 37 * PCI configuraiton space implementation for the SEGA GAPS PCI bridge. 38 */ 39 40 #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */ 41 42 #include <sys/param.h> 43 #include <sys/systm.h> 44 #include <sys/kernel.h> 45 #include <sys/device.h> 46 47 #include <machine/cpu.h> 48 #include <machine/bus.h> 49 #include <machine/shbvar.h> 50 51 #include <dev/pci/pcivar.h> 52 #include <dev/pci/pcireg.h> 53 54 #include <dreamcast/dev/g2/gapspcivar.h> 55 56 void gaps_attach_hook(struct device *, struct device *, 57 struct pcibus_attach_args *); 58 int gaps_bus_maxdevs(void *, int); 59 pcitag_t gaps_make_tag(void *, int, int, int); 60 pcireg_t gaps_conf_read(void *, pcitag_t, int); 61 void gaps_conf_write(void *, pcitag_t, int, pcireg_t); 62 63 int gaps_intr_map(struct pci_attach_args *, pci_intr_handle_t *); 64 const char *gaps_intr_string(void *, pci_intr_handle_t); 65 void *gaps_intr_establish(void *, pci_intr_handle_t, 66 int, int (*)(void *), void *); 67 void gaps_intr_disestablish(void *, void *); 68 69 void 70 gaps_pci_init(struct gaps_softc *sc) 71 { 72 pci_chipset_tag_t pc = &sc->sc_pc; 73 74 memset(pc, 0, sizeof(*pc)); 75 76 pc->pc_attach_hook = gaps_attach_hook; 77 pc->pc_bus_maxdevs = gaps_bus_maxdevs; 78 pc->pc_make_tag = gaps_make_tag; 79 pc->pc_conf_read = gaps_conf_read; 80 pc->pc_conf_write = gaps_conf_write; 81 pc->pc_conf_v = sc; 82 83 pc->pc_intr_map = gaps_intr_map; 84 pc->pc_intr_string = gaps_intr_string; 85 pc->pc_intr_establish = gaps_intr_establish; 86 pc->pc_intr_disestablish = gaps_intr_disestablish; 87 88 if (bus_space_map(sc->sc_memt, 0x01001600, 0x100, 89 0, &sc->sc_pci_memh) != 0) 90 panic("gaps_pci_init: can't map PCI configuration space"); 91 } 92 93 #define GAPS_PCITAG_MAGIC 0x022473 94 95 void 96 gaps_attach_hook(struct device *bus, struct device *pci, 97 struct pcibus_attach_args *pba) 98 { 99 struct gaps_softc *sc = (void *) bus; 100 101 /* 102 * Now that we know there's a bus configured, go ahead and 103 * program the BAR on the device. 104 */ 105 pci_conf_write(&sc->sc_pc, GAPS_PCITAG_MAGIC, 106 PCI_MAPREG_START + 4, 0x01000000); 107 pci_conf_write(&sc->sc_pc, GAPS_PCITAG_MAGIC, PCI_COMMAND_STATUS_REG, 108 pci_conf_read(&sc->sc_pc, 0, PCI_COMMAND_STATUS_REG) | 109 PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE); 110 } 111 112 int 113 gaps_bus_maxdevs(void *v, int bus) 114 { 115 116 return (1); 117 } 118 119 pcitag_t 120 gaps_make_tag(void *v, int bus, int dev, int func) 121 { 122 123 if (bus == 0 && dev == 0 && func == 0) 124 return (GAPS_PCITAG_MAGIC); 125 126 return (0); 127 } 128 129 pcireg_t 130 gaps_conf_read(void *v, pcitag_t tag, int reg) 131 { 132 struct gaps_softc *sc = v; 133 134 if (tag != GAPS_PCITAG_MAGIC) 135 return (-1); 136 137 if (reg == (PCI_MAPREG_START + 4)) { 138 /* 139 * We fake the BAR -- just return the physical address 140 * to which the device is mapped. 141 */ 142 return (0x01001700); 143 } 144 145 return (bus_space_read_4(sc->sc_memt, sc->sc_pci_memh, reg)); 146 } 147 148 void 149 gaps_conf_write(void *v, pcitag_t tag, int reg, pcireg_t val) 150 { 151 struct gaps_softc *sc = v; 152 153 if (tag != GAPS_PCITAG_MAGIC) 154 return; 155 156 /* Disallow writing to the "BAR" ... it doesn't actually exist. */ 157 if (reg == (PCI_MAPREG_START + 4) && val != 0x01000000) 158 return; 159 160 bus_space_write_4(sc->sc_memt, sc->sc_pci_memh, reg, val); 161 } 162 163 int 164 gaps_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp) 165 { 166 167 /* We interrupt at the CPU's irq 11. */ 168 *ihp = 11; 169 return (0); 170 } 171 172 const char * 173 gaps_intr_string(void *v, pci_intr_handle_t ih) 174 { 175 176 return ("SH4 irq 11"); 177 } 178 179 void * 180 gaps_intr_establish(void *v, pci_intr_handle_t ih, int level, 181 int (*func)(void *), void *arg) 182 { 183 void *rv; 184 185 rv = shb_intr_establish(ih, IST_EDGE /* XXX IST_LEVEL? */, 186 level, func, arg); 187 #if 0 188 if (rv != NULL) 189 *(volatile unsigned int *)(void *)(0xa05f6924) |= 1<<3; 190 #endif 191 return (rv); 192 } 193 194 void 195 gaps_intr_disestablish(void *v, void *ih) 196 { 197 198 panic("gaps_intr_disestablish: not implemented"); 199 } 200