openpic_iobus.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*-
  2. * SPDX-License-Identifier: BSD-3-Clause
  3. *
  4. * Copyright 2003 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. /*
  31. * The psim iobus attachment for the OpenPIC interrupt controller.
  32. */
  33. #include <sys/cdefs.h>
  34. __FBSDID("$FreeBSD$");
  35. #include <sys/param.h>
  36. #include <sys/systm.h>
  37. #include <sys/module.h>
  38. #include <sys/bus.h>
  39. #include <sys/conf.h>
  40. #include <sys/kernel.h>
  41. #include <dev/ofw/openfirm.h>
  42. #include <machine/bus.h>
  43. #include <machine/intr_machdep.h>
  44. #include <machine/md_var.h>
  45. #include <machine/pio.h>
  46. #include <machine/resource.h>
  47. #include <vm/vm.h>
  48. #include <vm/pmap.h>
  49. #include <sys/rman.h>
  50. #include <machine/openpicreg.h>
  51. #include <machine/openpicvar.h>
  52. #include <powerpc/psim/iobusvar.h>
  53. #include "pic_if.h"
  54. /*
  55. * PSIM IOBus interface
  56. */
  57. static int openpic_iobus_probe(device_t);
  58. static int openpic_iobus_attach(device_t);
  59. static device_method_t openpic_iobus_methods[] = {
  60. /* Device interface */
  61. DEVMETHOD(device_probe, openpic_iobus_probe),
  62. DEVMETHOD(device_attach, openpic_iobus_attach),
  63. /* PIC interface */
  64. DEVMETHOD(pic_config, openpic_config),
  65. DEVMETHOD(pic_dispatch, openpic_dispatch),
  66. DEVMETHOD(pic_enable, openpic_enable),
  67. DEVMETHOD(pic_eoi, openpic_eoi),
  68. DEVMETHOD(pic_ipi, openpic_ipi),
  69. DEVMETHOD(pic_mask, openpic_mask),
  70. DEVMETHOD(pic_unmask, openpic_unmask),
  71. { 0, 0 }
  72. };
  73. static driver_t openpic_iobus_driver = {
  74. "openpic",
  75. openpic_iobus_methods,
  76. sizeof(struct openpic_softc)
  77. };
  78. DRIVER_MODULE(openpic, iobus, openpic_iobus_driver, openpic_devclass, 0, 0);
  79. static int
  80. openpic_iobus_probe(device_t dev)
  81. {
  82. struct openpic_softc *sc;
  83. char *name;
  84. name = iobus_get_name(dev);
  85. if (strcmp(name, "interrupt-controller") != 0)
  86. return (ENXIO);
  87. /*
  88. * The description was already printed out in the nexus
  89. * probe, so don't do it again here
  90. */
  91. device_set_desc(dev, OPENPIC_DEVSTR);
  92. sc = device_get_softc(dev);
  93. sc->sc_psim = 1;
  94. return (0);
  95. }
  96. static int
  97. openpic_iobus_attach(device_t dev)
  98. {
  99. return (openpic_common_attach(dev, 0));
  100. }