serdev_if.m revision 157299
11573Srgrimes#-
21573Srgrimes# Copyright (c) 2006 Marcel Moolenaar
31573Srgrimes# All rights reserved.
41573Srgrimes#
51573Srgrimes# Redistribution and use in source and binary forms, with or without
61573Srgrimes# modification, are permitted provided that the following conditions
71573Srgrimes# are met:
81573Srgrimes# 1. Redistributions of source code must retain the above copyright
91573Srgrimes#    notice, this list of conditions and the following disclaimer.
101573Srgrimes# 2. Redistributions in binary form must reproduce the above copyright
111573Srgrimes#    notice, this list of conditions and the following disclaimer in the
121573Srgrimes#    documentation and/or other materials provided with the distribution.
131573Srgrimes#
141573Srgrimes# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
151573Srgrimes# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16249808Semaste# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
171573Srgrimes# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
181573Srgrimes# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
191573Srgrimes# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
201573Srgrimes# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
211573Srgrimes# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
221573Srgrimes# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
231573Srgrimes# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
241573Srgrimes# SUCH DAMAGE.
251573Srgrimes#
261573Srgrimes# $FreeBSD: head/sys/kern/serdev_if.m 157299 2006-03-30 18:33:22Z marcel $
271573Srgrimes#
281573Srgrimes
291573Srgrimes#include <sys/bus.h>
301573Srgrimes#include <sys/serial.h>
311573Srgrimes
321573Srgrimes# The serdev interface is used by umbrella drivers and children thereof to
331573Srgrimes# establish a more intimate relationship, necessary for efficient handling
341573Srgrimes# of multiple (concurrent) serial communication channels.  Examples include
351573Srgrimes# serial communications controller (SCC) drivers, multi-I/O adapter drivers
3692986Sobrien# and intelligent multi-port serial drivers.  Methods specifically deal
3792986Sobrien# with interrupt handling and configuration.  Conceptually, the umbrella
381573Srgrimes# driver is responsible for the overall operation of the hardware and uses
391573Srgrimes# child drivers to handle each individual channel.
4016586Sjraynard# The serdev interface is intended to inherit the device interface.
411573Srgrimes
421573SrgrimesINTERFACE serdev;
431573Srgrimes
441573Srgrimes# Default implementations of some methods.
451573SrgrimesCODE {
461573Srgrimes	static serdev_intr_t *
4772373Sdeischen	default_ihand(device_t dev, int ipend)
4872373Sdeischen	{
491573Srgrimes		return (NULL);
501573Srgrimes	}
511573Srgrimes
521573Srgrimes	static int
531573Srgrimes	default_sysdev(device_t dev)
541573Srgrimes	{
551573Srgrimes		return (0);
56	}
57};
58
59# ihand() - Query serial device interrupt handler.
60# This method is called by the umbrella driver to obtain function pointers
61# to interrupt handlers for each individual interrupt source. This allows
62# the umbralla driver to control the servicing of interrupts between the
63# different channels in the most flexible way.
64METHOD serdev_intr_t* ihand {
65	device_t dev;
66	int ipend;
67} DEFAULT default_ihand;
68
69# sysdev() - Query system device status 
70# This method may be called by the umbrella driver for each child driver
71# to establish if a particular channel and mode is currently being used
72# for system specific usage. If this is the case, the hardware is not
73# reset and the channel will not change its operation mode.
74# The return value is !0 if the channel and mode are used for a system
75# device and 0 otherwise.
76METHOD int sysdev {
77	device_t dev;
78} DEFAULT default_sysdev;
79
80