ip22-gio.c 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. #include <linux/export.h>
  3. #include <linux/kernel.h>
  4. #include <linux/init.h>
  5. #include <linux/slab.h>
  6. #include <asm/addrspace.h>
  7. #include <asm/paccess.h>
  8. #include <asm/gio_device.h>
  9. #include <asm/sgi/gio.h>
  10. #include <asm/sgi/hpc3.h>
  11. #include <asm/sgi/mc.h>
  12. #include <asm/sgi/ip22.h>
  13. static struct bus_type gio_bus_type;
  14. static struct {
  15. const char *name;
  16. __u8 id;
  17. } gio_name_table[] = {
  18. { .name = "SGI Impact", .id = 0x10 },
  19. { .name = "Phobos G160", .id = 0x35 },
  20. { .name = "Phobos G130", .id = 0x36 },
  21. { .name = "Phobos G100", .id = 0x37 },
  22. { .name = "Set Engineering GFE", .id = 0x38 },
  23. /* fake IDs */
  24. { .name = "SGI Newport", .id = 0x7e },
  25. { .name = "SGI GR2/GR3", .id = 0x7f },
  26. };
  27. static void gio_bus_release(struct device *dev)
  28. {
  29. kfree(dev);
  30. }
  31. static struct device gio_bus = {
  32. .init_name = "gio",
  33. .release = &gio_bus_release,
  34. };
  35. /**
  36. * gio_match_device - Tell if an of_device structure has a matching
  37. * gio_match structure
  38. * @ids: array of of device match structures to search in
  39. * @dev: the of device structure to match against
  40. *
  41. * Used by a driver to check whether an of_device present in the
  42. * system is in its list of supported devices.
  43. */
  44. static const struct gio_device_id *
  45. gio_match_device(const struct gio_device_id *match,
  46. const struct gio_device *dev)
  47. {
  48. const struct gio_device_id *ids;
  49. for (ids = match; ids->id != 0xff; ids++)
  50. if (ids->id == dev->id.id)
  51. return ids;
  52. return NULL;
  53. }
  54. struct gio_device *gio_dev_get(struct gio_device *dev)
  55. {
  56. struct device *tmp;
  57. if (!dev)
  58. return NULL;
  59. tmp = get_device(&dev->dev);
  60. if (tmp)
  61. return to_gio_device(tmp);
  62. else
  63. return NULL;
  64. }
  65. EXPORT_SYMBOL_GPL(gio_dev_get);
  66. void gio_dev_put(struct gio_device *dev)
  67. {
  68. if (dev)
  69. put_device(&dev->dev);
  70. }
  71. EXPORT_SYMBOL_GPL(gio_dev_put);
  72. /**
  73. * gio_release_dev - free an gio device structure when all users of it are finished.
  74. * @dev: device that's been disconnected
  75. *
  76. * Will be called only by the device core when all users of this gio device are
  77. * done.
  78. */
  79. void gio_release_dev(struct device *dev)
  80. {
  81. struct gio_device *giodev;
  82. giodev = to_gio_device(dev);
  83. kfree(giodev);
  84. }
  85. EXPORT_SYMBOL_GPL(gio_release_dev);
  86. int gio_device_register(struct gio_device *giodev)
  87. {
  88. giodev->dev.bus = &gio_bus_type;
  89. giodev->dev.parent = &gio_bus;
  90. return device_register(&giodev->dev);
  91. }
  92. EXPORT_SYMBOL_GPL(gio_device_register);
  93. void gio_device_unregister(struct gio_device *giodev)
  94. {
  95. device_unregister(&giodev->dev);
  96. }
  97. EXPORT_SYMBOL_GPL(gio_device_unregister);
  98. static int gio_bus_match(struct device *dev, struct device_driver *drv)
  99. {
  100. struct gio_device *gio_dev = to_gio_device(dev);
  101. struct gio_driver *gio_drv = to_gio_driver(drv);
  102. return gio_match_device(gio_drv->id_table, gio_dev) != NULL;
  103. }
  104. static int gio_device_probe(struct device *dev)
  105. {
  106. int error = -ENODEV;
  107. struct gio_driver *drv;
  108. struct gio_device *gio_dev;
  109. const struct gio_device_id *match;
  110. drv = to_gio_driver(dev->driver);
  111. gio_dev = to_gio_device(dev);
  112. if (!drv->probe)
  113. return error;
  114. gio_dev_get(gio_dev);
  115. match = gio_match_device(drv->id_table, gio_dev);
  116. if (match)
  117. error = drv->probe(gio_dev, match);
  118. if (error)
  119. gio_dev_put(gio_dev);
  120. return error;
  121. }
  122. static void gio_device_remove(struct device *dev)
  123. {
  124. struct gio_device *gio_dev = to_gio_device(dev);
  125. struct gio_driver *drv = to_gio_driver(dev->driver);
  126. if (drv->remove)
  127. drv->remove(gio_dev);
  128. }
  129. static void gio_device_shutdown(struct device *dev)
  130. {
  131. struct gio_device *gio_dev = to_gio_device(dev);
  132. struct gio_driver *drv = to_gio_driver(dev->driver);
  133. if (dev->driver && drv->shutdown)
  134. drv->shutdown(gio_dev);
  135. }
  136. static ssize_t modalias_show(struct device *dev, struct device_attribute *a,
  137. char *buf)
  138. {
  139. struct gio_device *gio_dev = to_gio_device(dev);
  140. int len = snprintf(buf, PAGE_SIZE, "gio:%x\n", gio_dev->id.id);
  141. return (len >= PAGE_SIZE) ? (PAGE_SIZE - 1) : len;
  142. }
  143. static DEVICE_ATTR_RO(modalias);
  144. static ssize_t name_show(struct device *dev,
  145. struct device_attribute *attr, char *buf)
  146. {
  147. struct gio_device *giodev;
  148. giodev = to_gio_device(dev);
  149. return sprintf(buf, "%s", giodev->name);
  150. }
  151. static DEVICE_ATTR_RO(name);
  152. static ssize_t id_show(struct device *dev,
  153. struct device_attribute *attr, char *buf)
  154. {
  155. struct gio_device *giodev;
  156. giodev = to_gio_device(dev);
  157. return sprintf(buf, "%x", giodev->id.id);
  158. }
  159. static DEVICE_ATTR_RO(id);
  160. static struct attribute *gio_dev_attrs[] = {
  161. &dev_attr_modalias.attr,
  162. &dev_attr_name.attr,
  163. &dev_attr_id.attr,
  164. NULL,
  165. };
  166. ATTRIBUTE_GROUPS(gio_dev);
  167. static int gio_device_uevent(struct device *dev, struct kobj_uevent_env *env)
  168. {
  169. struct gio_device *gio_dev = to_gio_device(dev);
  170. add_uevent_var(env, "MODALIAS=gio:%x", gio_dev->id.id);
  171. return 0;
  172. }
  173. int gio_register_driver(struct gio_driver *drv)
  174. {
  175. /* initialize common driver fields */
  176. if (!drv->driver.name)
  177. drv->driver.name = drv->name;
  178. if (!drv->driver.owner)
  179. drv->driver.owner = drv->owner;
  180. drv->driver.bus = &gio_bus_type;
  181. /* register with core */
  182. return driver_register(&drv->driver);
  183. }
  184. EXPORT_SYMBOL_GPL(gio_register_driver);
  185. void gio_unregister_driver(struct gio_driver *drv)
  186. {
  187. driver_unregister(&drv->driver);
  188. }
  189. EXPORT_SYMBOL_GPL(gio_unregister_driver);
  190. void gio_set_master(struct gio_device *dev)
  191. {
  192. u32 tmp = sgimc->giopar;
  193. switch (dev->slotno) {
  194. case 0:
  195. tmp |= SGIMC_GIOPAR_MASTERGFX;
  196. break;
  197. case 1:
  198. tmp |= SGIMC_GIOPAR_MASTEREXP0;
  199. break;
  200. case 2:
  201. tmp |= SGIMC_GIOPAR_MASTEREXP1;
  202. break;
  203. }
  204. sgimc->giopar = tmp;
  205. }
  206. EXPORT_SYMBOL_GPL(gio_set_master);
  207. void ip22_gio_set_64bit(int slotno)
  208. {
  209. u32 tmp = sgimc->giopar;
  210. switch (slotno) {
  211. case 0:
  212. tmp |= SGIMC_GIOPAR_GFX64;
  213. break;
  214. case 1:
  215. tmp |= SGIMC_GIOPAR_EXP064;
  216. break;
  217. case 2:
  218. tmp |= SGIMC_GIOPAR_EXP164;
  219. break;
  220. }
  221. sgimc->giopar = tmp;
  222. }
  223. static int ip22_gio_id(unsigned long addr, u32 *res)
  224. {
  225. u8 tmp8;
  226. u8 tmp16;
  227. u32 tmp32;
  228. u8 *ptr8;
  229. u16 *ptr16;
  230. u32 *ptr32;
  231. ptr32 = (void *)CKSEG1ADDR(addr);
  232. if (!get_dbe(tmp32, ptr32)) {
  233. /*
  234. * We got no DBE, but this doesn't mean anything.
  235. * If GIO is pipelined (which can't be disabled
  236. * for GFX slot) we don't get a DBE, but we see
  237. * the transfer size as data. So we do an 8bit
  238. * and a 16bit access and check whether the common
  239. * data matches
  240. */
  241. ptr8 = (void *)CKSEG1ADDR(addr + 3);
  242. if (get_dbe(tmp8, ptr8)) {
  243. /*
  244. * 32bit access worked, but 8bit doesn't
  245. * so we don't see phantom reads on
  246. * a pipelined bus, but a real card which
  247. * doesn't support 8 bit reads
  248. */
  249. *res = tmp32;
  250. return 1;
  251. }
  252. ptr16 = (void *)CKSEG1ADDR(addr + 2);
  253. get_dbe(tmp16, ptr16);
  254. if (tmp8 == (tmp16 & 0xff) &&
  255. tmp8 == (tmp32 & 0xff) &&
  256. tmp16 == (tmp32 & 0xffff)) {
  257. *res = tmp32;
  258. return 1;
  259. }
  260. }
  261. return 0; /* nothing here */
  262. }
  263. #define HQ2_MYSTERY_OFFS 0x6A07C
  264. #define NEWPORT_USTATUS_OFFS 0xF133C
  265. static int ip22_is_gr2(unsigned long addr)
  266. {
  267. u32 tmp;
  268. u32 *ptr;
  269. /* HQ2 only allows 32bit accesses */
  270. ptr = (void *)CKSEG1ADDR(addr + HQ2_MYSTERY_OFFS);
  271. if (!get_dbe(tmp, ptr)) {
  272. if (tmp == 0xdeadbeef)
  273. return 1;
  274. }
  275. return 0;
  276. }
  277. static void ip22_check_gio(int slotno, unsigned long addr, int irq)
  278. {
  279. const char *name = "Unknown";
  280. struct gio_device *gio_dev;
  281. u32 tmp;
  282. __u8 id;
  283. int i;
  284. /* first look for GR2/GR3 by checking mystery register */
  285. if (ip22_is_gr2(addr))
  286. tmp = 0x7f;
  287. else {
  288. if (!ip22_gio_id(addr, &tmp)) {
  289. /*
  290. * no GIO signature at start address of slot
  291. * since Newport doesn't have one, we check if
  292. * user status register is readable
  293. */
  294. if (ip22_gio_id(addr + NEWPORT_USTATUS_OFFS, &tmp))
  295. tmp = 0x7e;
  296. else
  297. tmp = 0;
  298. }
  299. }
  300. if (tmp) {
  301. id = GIO_ID(tmp);
  302. if (tmp & GIO_32BIT_ID) {
  303. if (tmp & GIO_64BIT_IFACE)
  304. ip22_gio_set_64bit(slotno);
  305. }
  306. for (i = 0; i < ARRAY_SIZE(gio_name_table); i++) {
  307. if (id == gio_name_table[i].id) {
  308. name = gio_name_table[i].name;
  309. break;
  310. }
  311. }
  312. printk(KERN_INFO "GIO: slot %d : %s (id %x)\n",
  313. slotno, name, id);
  314. gio_dev = kzalloc(sizeof *gio_dev, GFP_KERNEL);
  315. if (!gio_dev)
  316. return;
  317. gio_dev->name = name;
  318. gio_dev->slotno = slotno;
  319. gio_dev->id.id = id;
  320. gio_dev->resource.start = addr;
  321. gio_dev->resource.end = addr + 0x3fffff;
  322. gio_dev->resource.flags = IORESOURCE_MEM;
  323. gio_dev->irq = irq;
  324. dev_set_name(&gio_dev->dev, "%d", slotno);
  325. gio_device_register(gio_dev);
  326. } else
  327. printk(KERN_INFO "GIO: slot %d : Empty\n", slotno);
  328. }
  329. static struct bus_type gio_bus_type = {
  330. .name = "gio",
  331. .dev_groups = gio_dev_groups,
  332. .match = gio_bus_match,
  333. .probe = gio_device_probe,
  334. .remove = gio_device_remove,
  335. .shutdown = gio_device_shutdown,
  336. .uevent = gio_device_uevent,
  337. };
  338. static struct resource gio_bus_resource = {
  339. .start = GIO_SLOT_GFX_BASE,
  340. .end = GIO_SLOT_GFX_BASE + 0x9fffff,
  341. .name = "GIO Bus",
  342. .flags = IORESOURCE_MEM,
  343. };
  344. int __init ip22_gio_init(void)
  345. {
  346. unsigned int pbdma __maybe_unused;
  347. int ret;
  348. ret = device_register(&gio_bus);
  349. if (ret) {
  350. put_device(&gio_bus);
  351. return ret;
  352. }
  353. ret = bus_register(&gio_bus_type);
  354. if (!ret) {
  355. request_resource(&iomem_resource, &gio_bus_resource);
  356. printk(KERN_INFO "GIO: Probing bus...\n");
  357. if (ip22_is_fullhouse()) {
  358. /* Indigo2 */
  359. ip22_check_gio(0, GIO_SLOT_GFX_BASE, SGI_GIO_1_IRQ);
  360. ip22_check_gio(1, GIO_SLOT_EXP0_BASE, SGI_GIO_1_IRQ);
  361. } else {
  362. /* Indy/Challenge S */
  363. if (get_dbe(pbdma, (unsigned int *)&hpc3c1->pbdma[1]))
  364. ip22_check_gio(0, GIO_SLOT_GFX_BASE,
  365. SGI_GIO_0_IRQ);
  366. ip22_check_gio(1, GIO_SLOT_EXP0_BASE, SGI_GIOEXP0_IRQ);
  367. ip22_check_gio(2, GIO_SLOT_EXP1_BASE, SGI_GIOEXP1_IRQ);
  368. }
  369. } else
  370. device_unregister(&gio_bus);
  371. return ret;
  372. }
  373. subsys_initcall(ip22_gio_init);