scc_bfe.h revision 157299
11929Swollman/*-
274532Sru * Copyright (c) 2004-2006 Marcel Moolenaar
31929Swollman * All rights reserved.
41929Swollman *
574816Sru * Redistribution and use in source and binary forms, with or without
61929Swollman * modification, are permitted provided that the following conditions
7201390Sed * are met:
8201390Sed *
91929Swollman * 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 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/scc/scc_bfe.h 157299 2006-03-30 18:33:22Z marcel $
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 */
40struct 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
66struct scc_chan;
67
68struct scc_mode {
69	struct scc_chan	*m_chan;
70	device_t	m_dev;
71
72	u_int		m_mode;
73	int		m_attached:1;
74	int		m_fastintr:1;
75	int		m_hasintr:1;
76	int		m_probed:1;
77	int		m_sysdev:1;
78
79	driver_intr_t	*ih;
80	serdev_intr_t	*ih_src[SCC_ISRCCNT];
81	void		*ih_arg;
82};
83
84struct scc_chan {
85	struct resource ch_rres;
86	struct resource_list ch_rlist;
87
88	struct scc_mode	ch_mode[SCC_NMODES];
89
90	u_int		ch_nr;
91	int		ch_sysdev:1;
92
93	uint32_t	ch_ipend;
94	uint32_t	ch_hwsig;
95};
96
97/*
98 * SCC class & instance (=softc)
99 */
100struct scc_class {
101	KOBJ_CLASS_FIELDS;
102	u_int		cl_channels;	/* Number of independent channels. */
103	u_int		cl_class;	/* SCC bus class ID. */
104	u_int		cl_modes;	/* Supported modes (bitset). */
105	int		cl_range;
106	u_int		cl_rclk;
107	u_int		cl_regshft;
108};
109
110extern struct scc_class scc_sab82532_class;
111extern struct scc_class scc_z8530_class;
112
113struct scc_softc {
114	KOBJ_FIELDS;
115	struct scc_class *sc_class;
116	struct scc_bas	sc_bas;
117	device_t	sc_dev;
118
119	struct mtx	sc_hwmtx;	/* Spinlock protecting hardware. */
120
121	struct resource	*sc_rres;	/* Register resource. */
122	int		sc_rrid;
123	int		sc_rtype;	/* SYS_RES_{IOPORT|MEMORY}. */
124	struct resource *sc_ires;	/* Interrupt resource. */
125	void		*sc_icookie;
126	int		sc_irid;
127
128	struct scc_chan	*sc_chan;
129
130	int		sc_fastintr:1;
131	int		sc_leaving:1;
132	int		sc_polled:1;
133
134	uint32_t        sc_hwsig;       /* Signal state. Used by HW driver. */
135};
136
137extern devclass_t scc_devclass;
138extern char scc_driver_name[];
139
140int scc_bfe_attach(device_t dev);
141int scc_bfe_detach(device_t dev);
142int scc_bfe_probe(device_t dev);
143
144struct resource *scc_bus_alloc_resource(device_t, device_t, int, int *,
145    u_long, u_long, u_long, u_int);
146int scc_bus_get_resource(device_t, device_t, int, int, u_long *, u_long *);
147int scc_bus_read_ivar(device_t, device_t, int, uintptr_t *);
148int scc_bus_release_resource(device_t, device_t, int, int, struct resource *);
149int scc_bus_setup_intr(device_t, device_t, struct resource *, int,
150    void (*)(void *), void *, void **);
151int scc_bus_teardown_intr(device_t, device_t, struct resource *, void *);
152
153#endif /* _DEV_SCC_BFE_H_ */
154