xref: /netbsd-src/sys/arch/alpha/pci/tsvar.h (revision 413d532bcc3f62d122e56d92e13ac64825a40baf)
1 /* $NetBSD: tsvar.h,v 1.12 2014/02/21 12:23:30 jdc Exp $ */
2 
3 /*-
4  * Copyright (c) 1999 by Ross Harvey.  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. All advertising materials mentioning features or use of this software
15  *    must display the following acknowledgement:
16  *	This product includes software developed by Ross Harvey.
17  * 4. The name of Ross Harvey may not be used to endorse or promote products
18  *    derived from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
21  * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
23  * ARE DISCLAIMED.  IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
24  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30  * SUCH DAMAGE.
31  *
32  */
33 
34 #include <dev/isa/isavar.h>
35 #include <dev/pci/pcivar.h>
36 #include <dev/i2c/i2cvar.h>
37 #include <alpha/pci/pci_sgmap_pte64.h>
38 
39 #define	_FSTORE	(EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long))
40 
41 #define	tsvar() { Generate ctags(1) key. }
42 
43 struct tsp_config {
44 	int	pc_pslot;		/* Pchip 0 or 1 */
45 	int	pc_initted;		/* Initialized */
46 	uint64_t pc_iobase;		/* All Pchip space starts here */
47 	struct	ts_pchip *pc_csr;	/* Pchip CSR space starts here */
48 	volatile uint64_t *pc_tlbia;  	/* Pchip TLBIA register address */
49 
50 	struct	alpha_bus_space pc_iot, pc_memt;
51 	struct	alpha_pci_chipset pc_pc;
52 
53 	struct	alpha_bus_dma_tag pc_dmat_direct;
54 	struct	alpha_bus_dma_tag pc_dmat_sgmap;
55 
56 	struct alpha_sgmap pc_sgmap;
57 
58 	uint32_t pc_hae_mem;
59 	uint32_t pc_hae_io;
60 
61 	long	pc_io_exstorage[_FSTORE];
62 	long	pc_mem_exstorage[_FSTORE];
63 	struct	extent *pc_io_ex, *pc_mem_ex;
64 	int	pc_mallocsafe;
65 };
66 
67 struct tsp_attach_args {
68 	const char *tsp_name;
69 	int	tsp_slot;
70 };
71 
72 struct tsciic_softc {
73 	device_t	sc_dev;
74 	struct		i2c_controller sc_i2c;
75 	kmutex_t	sc_buslock;
76 };
77 
78 struct tsciic_attach_args {
79 	const char *tsciic_name;
80 };
81 
82 extern int tsp_console_hose;
83 
84 struct	tsp_config *tsp_init(int, int);
85 void	tsp_pci_init(pci_chipset_tag_t, void *);
86 void	tsp_dma_init(struct tsp_config *);
87 
88 void	tsp_bus_io_init(bus_space_tag_t, void *);
89 void	tsp_bus_mem_init(bus_space_tag_t, void *);
90 
91 void	tsp_bus_mem_init2(bus_space_tag_t, void *);
92 
93 void	tsciic_init(device_t);
94 
95 void	tsp_print_error(unsigned int, unsigned long);
96 void	tsc_print_misc(unsigned int, unsigned long);
97 void	tsc_print_dir(unsigned int, unsigned long);
98 
99 #define IPRINTF(i, f, ...)	printf("%*s" f, i * 4, "", ##__VA_ARGS__)
100