Home | History | Annotate | Line # | Download | only in fdt
pcihost_fdtvar.h revision 1.2
      1  1.2  jmcneill /* $NetBSD: pcihost_fdtvar.h,v 1.2 2019/06/12 10:13:44 jmcneill Exp $ */
      2  1.1  jakllsch 
      3  1.1  jakllsch /*-
      4  1.1  jakllsch  * Copyright (c) 2018 Jared D. McNeill <jmcneill (at) invisible.ca>
      5  1.1  jakllsch  * All rights reserved.
      6  1.1  jakllsch  *
      7  1.1  jakllsch  * Redistribution and use in source and binary forms, with or without
      8  1.1  jakllsch  * modification, are permitted provided that the following conditions
      9  1.1  jakllsch  * are met:
     10  1.1  jakllsch  * 1. Redistributions of source code must retain the above copyright
     11  1.1  jakllsch  *    notice, this list of conditions and the following disclaimer.
     12  1.1  jakllsch  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  jakllsch  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  jakllsch  *    documentation and/or other materials provided with the distribution.
     15  1.1  jakllsch  *
     16  1.1  jakllsch  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17  1.1  jakllsch  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18  1.1  jakllsch  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19  1.1  jakllsch  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20  1.1  jakllsch  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21  1.1  jakllsch  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22  1.1  jakllsch  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23  1.1  jakllsch  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24  1.1  jakllsch  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25  1.1  jakllsch  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26  1.1  jakllsch  * SUCH DAMAGE.
     27  1.1  jakllsch  */
     28  1.1  jakllsch 
     29  1.1  jakllsch /* Physical address format bit definitions */
     30  1.1  jakllsch #define	PHYS_HI_RELO			__BIT(31)
     31  1.1  jakllsch #define	PHYS_HI_PREFETCH		__BIT(30)
     32  1.1  jakllsch #define	PHYS_HI_ALIASED			__BIT(29)
     33  1.1  jakllsch #define	PHYS_HI_SPACE			__BITS(25,24)
     34  1.1  jakllsch #define	 PHYS_HI_SPACE_CFG		0
     35  1.1  jakllsch #define	 PHYS_HI_SPACE_IO		1
     36  1.1  jakllsch #define	 PHYS_HI_SPACE_MEM32		2
     37  1.1  jakllsch #define	 PHYS_HI_SPACE_MEM64		3
     38  1.1  jakllsch #define	PHYS_HI_BUS			__BITS(23,16)
     39  1.1  jakllsch #define	PHYS_HI_DEVICE			__BITS(15,11)
     40  1.1  jakllsch #define	PHYS_HI_FUNCTION		__BITS(10,8)
     41  1.1  jakllsch #define	PHYS_HI_REGISTER		__BITS(7,0)
     42  1.1  jakllsch 
     43  1.1  jakllsch extern int pcihost_segment;
     44  1.1  jakllsch 
     45  1.1  jakllsch enum pcihost_type {
     46  1.1  jakllsch 	PCIHOST_CAM = 1,
     47  1.1  jakllsch 	PCIHOST_ECAM,
     48  1.1  jakllsch };
     49  1.1  jakllsch 
     50  1.1  jakllsch struct pcih_bus_space {
     51  1.1  jakllsch 	struct bus_space	bst;
     52  1.1  jakllsch 
     53  1.1  jakllsch 	int		(*map)(void *, bus_addr_t, bus_size_t,
     54  1.1  jakllsch 			      int, bus_space_handle_t *);
     55  1.1  jakllsch 	struct space_range {
     56  1.1  jakllsch 		bus_addr_t	bpci;
     57  1.1  jakllsch 		bus_addr_t	bbus;
     58  1.1  jakllsch 		bus_size_t	size;
     59  1.1  jakllsch 	} 			ranges[4];
     60  1.1  jakllsch 	size_t			nranges;
     61  1.1  jakllsch };
     62  1.1  jakllsch 
     63  1.1  jakllsch struct pcihost_softc {
     64  1.1  jakllsch 	device_t		sc_dev;
     65  1.1  jakllsch 	bus_dma_tag_t		sc_dmat;
     66  1.1  jakllsch 	bus_space_tag_t		sc_bst;
     67  1.1  jakllsch 	bus_space_handle_t	sc_bsh;
     68  1.1  jakllsch 	int			sc_phandle;
     69  1.1  jakllsch 
     70  1.1  jakllsch 	enum pcihost_type	sc_type;
     71  1.1  jakllsch 
     72  1.1  jakllsch 	u_int			sc_seg;
     73  1.1  jakllsch 	u_int			sc_bus_min;
     74  1.1  jakllsch 	u_int			sc_bus_max;
     75  1.1  jakllsch 
     76  1.1  jakllsch 	struct arm32_pci_chipset sc_pc;
     77  1.1  jakllsch 
     78  1.1  jakllsch 	struct pcih_bus_space	sc_io;
     79  1.1  jakllsch 	struct pcih_bus_space	sc_mem;
     80  1.2  jmcneill 
     81  1.2  jmcneill 	int			sc_pci_flags;
     82  1.2  jmcneill 
     83  1.2  jmcneill 	const u_int		*sc_pci_ranges;
     84  1.2  jmcneill 	u_int			sc_pci_ranges_cells;
     85  1.1  jakllsch };
     86  1.1  jakllsch 
     87  1.1  jakllsch void	pcihost_init2(struct pcihost_softc *);
     88  1.1  jakllsch void	pcihost_init(pci_chipset_tag_t, void *);
     89