1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 3 * 4 * Copyright (c) 2004-2006 Marcel Moolenaar 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 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. 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, BUT 22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 */ 28 29 #ifndef _DEV_SCC_BFE_H_ 30 #define _DEV_SCC_BFE_H_ 31 32 #include <sys/serial.h> 33 34 /* 35 * Bus access structure. This structure holds the minimum information needed 36 * to access the SCC. The rclk field, although not important to actually 37 * access the SCC, is important for baudrate programming, delay loops and 38 * other timing related computations. 39 */ 40 struct scc_bas { 41 bus_space_tag_t bst; 42 bus_space_handle_t bsh; 43 u_int range; 44 u_int rclk; 45 u_int regshft; 46 }; 47 48 #define scc_regofs(bas, reg) ((reg) << (bas)->regshft) 49 50 #define scc_getreg(bas, reg) \ 51 bus_space_read_1((bas)->bst, (bas)->bsh, scc_regofs(bas, reg)) 52 #define scc_setreg(bas, reg, value) \ 53 bus_space_write_1((bas)->bst, (bas)->bsh, scc_regofs(bas, reg), value) 54 55 #define scc_barrier(bas) \ 56 bus_space_barrier((bas)->bst, (bas)->bsh, 0, (bas)->range, \ 57 BUS_SPACE_BARRIER_READ|BUS_SPACE_BARRIER_WRITE) 58 59 /* 60 * SCC mode (child) and channel control structures. 61 */ 62 63 #define SCC_NMODES 3 64 #define SCC_ISRCCNT 5 65 66 struct scc_chan; 67 68 struct scc_mode { 69 struct scc_chan *m_chan; 70 device_t m_dev; 71 72 u_int m_mode; 73 bool m_attached:1; 74 bool m_fastintr:1; 75 bool m_hasintr:1; 76 bool m_probed:1; 77 bool m_sysdev:1; 78 79 driver_filter_t *ih; 80 serdev_intr_t *ih_src[SCC_ISRCCNT]; 81 void *ih_arg; 82 }; 83 84 struct scc_chan { 85 struct resource ch_rres; 86 struct resource_list ch_rlist; 87 88 struct resource *ch_ires; /* Interrupt resource. */ 89 void *ch_icookie; 90 int ch_irid; 91 92 struct scc_mode ch_mode[SCC_NMODES]; 93 94 u_int ch_nr; 95 bool ch_enabled:1; 96 bool ch_sysdev:1; 97 98 uint32_t ch_ipend; 99 uint32_t ch_hwsig; 100 }; 101 102 /* 103 * SCC class & instance (=softc) 104 */ 105 struct scc_class { 106 KOBJ_CLASS_FIELDS; 107 u_int cl_channels; /* Number of independent channels. */ 108 u_int cl_class; /* SCC bus class ID. */ 109 u_int cl_modes; /* Supported modes (bitset). */ 110 int cl_range; 111 }; 112 113 extern struct scc_class scc_quicc_class; 114 extern struct scc_class scc_z8530_escc_class; 115 extern struct scc_class scc_z8530_legacy_class; 116 117 struct scc_softc { 118 KOBJ_FIELDS; 119 struct scc_class *sc_class; 120 struct scc_bas sc_bas; 121 device_t sc_dev; 122 123 struct mtx sc_hwmtx; /* Spinlock protecting hardware. */ 124 125 struct resource *sc_rres; /* Register resource. */ 126 int sc_rrid; 127 int sc_rtype; /* SYS_RES_{IOPORT|MEMORY}. */ 128 129 struct scc_chan *sc_chan; 130 131 bool sc_fastintr:1; 132 bool sc_leaving:1; 133 bool sc_polled:1; 134 135 uint32_t sc_hwsig; /* Signal state. Used by HW driver. */ 136 }; 137 138 extern const char scc_driver_name[]; 139 140 int scc_bfe_attach(device_t dev, u_int ipc); 141 int scc_bfe_detach(device_t dev); 142 int scc_bfe_probe(device_t dev, u_int regshft, u_int rclk, u_int rid); 143 144 struct resource *scc_bus_alloc_resource(device_t, device_t, int, int *, 145 rman_res_t, rman_res_t, rman_res_t, u_int); 146 int scc_bus_get_resource(device_t, device_t, int, int, rman_res_t *, rman_res_t *); 147 int scc_bus_read_ivar(device_t, device_t, int, uintptr_t *); 148 int scc_bus_release_resource(device_t, device_t, int, int, struct resource *); 149 int scc_bus_setup_intr(device_t, device_t, struct resource *, int, 150 driver_filter_t *, void (*)(void *), void *, void **); 151 int scc_bus_teardown_intr(device_t, device_t, struct resource *, void *); 152 153 #endif /* _DEV_SCC_BFE_H_ */ 154