1 /* $NetBSD: ixp425var.h,v 1.11 2006/12/10 10:01:49 scw Exp $ */
5 * Ichiro FUKUHARA <ichiro@ichiro.org>.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
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.
17 * THIS SOFTWARE IS PROVIDED BY ICHIRO FUKUHARA ``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 ICHIRO FUKUHARA OR THE VOICES IN HIS HEAD BE LIABLE FOR
21 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, 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
34 #include <sys/device.h>
35 #include <sys/queue.h>
37 #include <machine/bus.h>
39 #include <dev/pci/pcivar.h>
41 #define PCI_CSR_WRITE_4(sc, reg, data) \
42 bus_space_write_4(sc->sc_iot, sc->sc_pci_ioh, \
45 #define PCI_CSR_READ_4(sc, reg) \
46 bus_space_read_4(sc->sc_iot, sc->sc_pci_ioh, reg)
48 #define GPIO_CONF_WRITE_4(sc, reg, data) \
49 bus_space_write_4(sc->sc_iot, sc->sc_gpio_ioh, \
52 #define GPIO_CONF_READ_4(sc, reg) \
53 bus_space_read_4(sc->sc_iot, sc->sc_gpio_ioh, reg)
55 #define EXP_BUS_WRITE_4(sc, reg, data) \
56 bus_space_write_4(sc->sc_iot, sc->sc_exp_ioh, reg, data)
58 #define EXP_BUS_READ_4(sc, reg) \
59 bus_space_read_4(sc->sc_iot, sc->sc_exp_ioh, reg)
61 #define PCI_CONF_LOCK(s) (s) = disable_interrupts(I32_bit)
62 #define PCI_CONF_UNLOCK(s) restore_interrupts((s))
66 bus_space_tag_t sc_iot
;
67 bus_space_handle_t sc_ioh
; /* IRQ handle */
69 u_int32_t sc_intrmask
;
71 /* Handles for the various subregions. */
72 bus_space_handle_t sc_pci_ioh
; /* PCI mem handler */
73 bus_space_handle_t sc_gpio_ioh
; /* GPIOs handler */
74 bus_space_handle_t sc_exp_ioh
; /* Expansion bus handle */
76 /* Bus space, DMA, and PCI tags for the PCI bus */
77 struct bus_space sc_pci_iot
;
78 struct bus_space sc_pci_memt
;
79 struct arm32_bus_dma_tag ia_pci_dmat
;
80 struct arm32_pci_chipset ia_pci_chipset
;
83 /* DMA window info for PCI DMA. */
84 struct arm32_dma_range ia_pci_dma_range
;
86 /* GPIO configuration */
87 u_int32_t sc_gpio_out
;
89 u_int32_t sc_gpio_intr1
;
90 u_int32_t sc_gpio_intr2
;
94 * There are roughly 32 interrupt sources.
99 TAILQ_ENTRY(intrhand
) ih_list
; /* link on intrq list */
100 int (*ih_func
)(void *); /* interrupt handler */
101 void *ih_arg
; /* arg for handler */
102 int ih_ipl
; /* IPL_* */
103 int ih_irq
; /* IRQ number */
106 #define IRQNAMESIZE sizeof("ixp425 irq xx")
109 TAILQ_HEAD(, intrhand
) iq_list
; /* handler list */
110 struct evcnt iq_ev
; /* event counter */
111 u_int32_t iq_mask
; /* IRQs to mask while handling */
112 u_int32_t iq_pci_mask
; /* PCI IRQs to mask while handling */
113 u_int32_t iq_levels
; /* IPL_*'s this IRQ has */
114 char iq_name
[IRQNAMESIZE
]; /* interrupt name */
115 int iq_ist
; /* share type */
127 extern struct ixp425_softc
*ixp425_softc
;
129 extern struct bus_space ixpsip_bs_tag
;
130 extern struct bus_space ixp425_bs_tag
;
131 extern struct bus_space ixp425_a4x_bs_tag
;
133 void ixp425_bs_init(bus_space_tag_t
, void *);
134 void ixp425_md_pci_init(struct ixp425_softc
*);
135 void ixp425_md_pci_conf_interrupt(pci_chipset_tag_t
, int, int, int,
137 void ixp425_pci_init(struct ixp425_softc
*);
138 void ixp425_pci_dma_init(struct ixp425_softc
*);
139 void ixp425_io_bs_init(bus_space_tag_t
, void *);
140 void ixp425_mem_bs_init(bus_space_tag_t
, void *);
142 void ixp425_pci_conf_reg_write(struct ixp425_softc
*, uint32_t, uint32_t);
143 uint32_t ixp425_pci_conf_reg_read(struct ixp425_softc
*, uint32_t);
145 void ixp425_attach(struct ixp425_softc
*);
146 void ixp425_icu_init(void);
147 void ixp425_clk_bootstrap(bus_space_tag_t
);
148 void ixp425_intr_init(void);
149 void *ixp425_intr_establish(int, int, int (*)(void *), void *);
150 void ixp425_intr_disestablish(void *);
152 uint32_t ixp425_sdram_size(void);
154 #endif /* _IXP425VAR_H_ */