tsvar.h revision 1.16 1 1.16 thorpej /* $NetBSD: tsvar.h,v 1.16 2021/07/18 00:01:20 thorpej Exp $ */
2 1.1 ross
3 1.1 ross /*-
4 1.1 ross * Copyright (c) 1999 by Ross Harvey. All rights reserved.
5 1.1 ross *
6 1.1 ross * Redistribution and use in source and binary forms, with or without
7 1.1 ross * modification, are permitted provided that the following conditions
8 1.1 ross * are met:
9 1.1 ross * 1. Redistributions of source code must retain the above copyright
10 1.1 ross * notice, this list of conditions and the following disclaimer.
11 1.1 ross * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 ross * notice, this list of conditions and the following disclaimer in the
13 1.1 ross * documentation and/or other materials provided with the distribution.
14 1.1 ross * 3. All advertising materials mentioning features or use of this software
15 1.1 ross * must display the following acknowledgement:
16 1.1 ross * This product includes software developed by Ross Harvey.
17 1.1 ross * 4. The name of Ross Harvey may not be used to endorse or promote products
18 1.1 ross * derived from this software without specific prior written permission.
19 1.1 ross *
20 1.1 ross * THIS SOFTWARE IS PROVIDED BY ROSS HARVEY ``AS IS'' AND ANY EXPRESS
21 1.1 ross * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 1.1 ross * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURP0SE
23 1.1 ross * ARE DISCLAIMED. IN NO EVENT SHALL ROSS HARVEY BE LIABLE FOR ANY
24 1.1 ross * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 1.1 ross * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 1.1 ross * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 1.1 ross * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 1.1 ross * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 1.1 ross * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 1.1 ross * SUCH DAMAGE.
31 1.1 ross *
32 1.1 ross */
33 1.1 ross
34 1.14 thorpej #include <sys/extent.h>
35 1.1 ross #include <dev/isa/isavar.h>
36 1.1 ross #include <dev/pci/pcivar.h>
37 1.12 jdc #include <dev/i2c/i2cvar.h>
38 1.1 ross #include <alpha/pci/pci_sgmap_pte64.h>
39 1.1 ross
40 1.7 mhitch #define _FSTORE (EXTENT_FIXED_STORAGE_SIZE(8) / sizeof(long))
41 1.7 mhitch
42 1.1 ross #define tsvar() { Generate ctags(1) key. }
43 1.1 ross
44 1.1 ross struct tsp_config {
45 1.1 ross int pc_pslot; /* Pchip 0 or 1 */
46 1.1 ross int pc_initted; /* Initialized */
47 1.10 matt uint64_t pc_iobase; /* All Pchip space starts here */
48 1.1 ross struct ts_pchip *pc_csr; /* Pchip CSR space starts here */
49 1.11 tsutsui volatile uint64_t *pc_tlbia; /* Pchip TLBIA register address */
50 1.1 ross
51 1.1 ross struct alpha_bus_space pc_iot, pc_memt;
52 1.1 ross struct alpha_pci_chipset pc_pc;
53 1.1 ross
54 1.15 thorpej struct alpha_bus_dma_tag pc_dmat64_direct;
55 1.1 ross struct alpha_bus_dma_tag pc_dmat_direct;
56 1.16 thorpej struct alpha_bus_dma_tag pc_dmat_sgmap_lo;
57 1.16 thorpej struct alpha_bus_dma_tag pc_dmat_sgmap_hi;
58 1.1 ross
59 1.16 thorpej struct alpha_sgmap pc_sgmap_lo;
60 1.16 thorpej struct alpha_sgmap pc_sgmap_hi;
61 1.1 ross
62 1.10 matt uint32_t pc_hae_mem;
63 1.10 matt uint32_t pc_hae_io;
64 1.1 ross
65 1.7 mhitch long pc_io_exstorage[_FSTORE];
66 1.7 mhitch long pc_mem_exstorage[_FSTORE];
67 1.1 ross struct extent *pc_io_ex, *pc_mem_ex;
68 1.1 ross int pc_mallocsafe;
69 1.1 ross };
70 1.1 ross
71 1.1 ross struct tsp_attach_args {
72 1.4 drochner const char *tsp_name;
73 1.1 ross int tsp_slot;
74 1.1 ross };
75 1.2 thorpej
76 1.12 jdc struct tsciic_softc {
77 1.12 jdc device_t sc_dev;
78 1.12 jdc struct i2c_controller sc_i2c;
79 1.12 jdc };
80 1.12 jdc
81 1.12 jdc struct tsciic_attach_args {
82 1.12 jdc const char *tsciic_name;
83 1.12 jdc };
84 1.12 jdc
85 1.2 thorpej extern int tsp_console_hose;
86 1.1 ross
87 1.6 dsl struct tsp_config *tsp_init(int, int);
88 1.6 dsl void tsp_pci_init(pci_chipset_tag_t, void *);
89 1.6 dsl void tsp_dma_init(struct tsp_config *);
90 1.1 ross
91 1.6 dsl void tsp_bus_io_init(bus_space_tag_t, void *);
92 1.6 dsl void tsp_bus_mem_init(bus_space_tag_t, void *);
93 1.3 thorpej
94 1.6 dsl void tsp_bus_mem_init2(bus_space_tag_t, void *);
95 1.9 hans
96 1.12 jdc void tsciic_init(device_t);
97 1.12 jdc
98 1.9 hans void tsp_print_error(unsigned int, unsigned long);
99 1.9 hans void tsc_print_misc(unsigned int, unsigned long);
100 1.9 hans void tsc_print_dir(unsigned int, unsigned long);
101 1.9 hans
102 1.9 hans #define IPRINTF(i, f, ...) printf("%*s" f, i * 4, "", ##__VA_ARGS__)
103