sio16.c revision 1.4
11.4Seeh/* $NetBSD: sio16.c,v 1.4 2002/03/20 20:39:15 eeh Exp $ */ 21.1Smrg 31.1Smrg/* 41.1Smrg * Copyright (c) 1998, 2001 Matthew R. Green 51.1Smrg * All rights reserved. 61.1Smrg * 71.1Smrg * Redistribution and use in source and binary forms, with or without 81.1Smrg * modification, are permitted provided that the following conditions 91.1Smrg * are met: 101.1Smrg * 1. Redistributions of source code must retain the above copyright 111.1Smrg * notice, this list of conditions and the following disclaimer. 121.1Smrg * 2. Redistributions in binary form must reproduce the above copyright 131.1Smrg * notice, this list of conditions and the following disclaimer in the 141.1Smrg * documentation and/or other materials provided with the distribution. 151.1Smrg * 3. The name of the author may not be used to endorse or promote products 161.1Smrg * derived from this software without specific prior written permission. 171.1Smrg * 181.1Smrg * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 191.1Smrg * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 201.1Smrg * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 211.1Smrg * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 221.1Smrg * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 231.1Smrg * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 241.1Smrg * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 251.1Smrg * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 261.1Smrg * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 271.1Smrg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 281.1Smrg * SUCH DAMAGE. 291.1Smrg */ 301.1Smrg 311.1Smrg/* 321.1Smrg * aurora technologies nova16 driver. this board is an sbus card with 331.1Smrg * an external 16 port serial box. there are two cirrus logic cd180 341.1Smrg * 8 port serial chips used in the implementation. 351.1Smrg * 361.1Smrg * thanks go to Oliver Aldulea <oli@morcov.bv.ro> for writing the 371.1Smrg * linux driver of this that helped clear up a couple of issues. 381.1Smrg */ 391.2Slukem 401.2Slukem#include <sys/cdefs.h> 411.4Seeh__KERNEL_RCSID(0, "$NetBSD: sio16.c,v 1.4 2002/03/20 20:39:15 eeh Exp $"); 421.1Smrg 431.1Smrg#include <sys/param.h> 441.1Smrg#include <sys/conf.h> 451.1Smrg#include <sys/device.h> 461.1Smrg#include <sys/systm.h> 471.1Smrg 481.1Smrg#include <machine/autoconf.h> 491.1Smrg#include <machine/conf.h> 501.1Smrg 511.1Smrg#include <dev/ic/cd18xxvar.h> 521.1Smrg#include <dev/ic/cd18xxreg.h> 531.1Smrg 541.1Smrg#include "ioconf.h" 551.1Smrg#include "locators.h" 561.1Smrg 571.1Smrg/* 1600se configuration register bits */ 581.1Smrg#define SIO16_CONFIGREG_ENABLE_IO 8 591.1Smrg#define SIO16_CONFIGREG_ENABLE_IRQ 4 601.1Smrg 611.1Smrg/* 1600se interrupt ackknowledge register bytes */ 621.1Smrg#define SIO16_MINT_ACK 1 /* modem interrupt acknowledge */ 631.1Smrg#define SIO16_TINT_ACK 2 /* tx interrupt acknowledge */ 641.1Smrg#define SIO16_RINT_ACK 3 /* rx interrupt acknowledge */ 651.1Smrg 661.1Smrg/* 671.1Smrg * device cfattach and cfdriver definitions, plus the routine we pass 681.1Smrg * to the cd18xx code or interrupt acknowledgement. 691.1Smrg */ 701.1Smrgstatic int sio16_match __P((struct device *, struct cfdata *, void *)); 711.1Smrgstatic void sio16_attach __P((struct device *, struct device *, void *)); 721.1Smrgstatic u_char sio16_ackfunc(void *, int who); 731.1Smrg 741.1Smrg/* 751.1Smrg * define the sio16 per-device softc. 761.1Smrg */ 771.1Smrgstruct sio16_softc { 781.1Smrg struct device sc_dev; /* must be first */ 791.1Smrg struct sbusdev sc_sd; /* for sbus drivers */ 801.1Smrg 811.1Smrg /* sbus information */ 821.1Smrg bus_space_tag_t sc_tag; /* bus tag for below */ 831.1Smrg bus_space_handle_t sc_configreg; /* configuration register */ 841.1Smrg bus_space_handle_t sc_reg[2]; /* cd180 register sets */ 851.1Smrg bus_space_handle_t sc_ack; /* interrupt acknowledgement */ 861.1Smrg#define SIO16_1600SE 0x00000001 871.1Smrg 881.1Smrg u_int sc_clk; 891.1Smrg 901.1Smrg /* cd180 information */ 911.1Smrg int sc_ncd180; 921.1Smrg 931.1Smrg}; 941.1Smrg 951.1Smrgstruct cfattach siosixteen_ca = { 961.1Smrg sizeof(struct sio16_softc), sio16_match, sio16_attach 971.1Smrg}; 981.1Smrg 991.1Smrgstruct sio16_attach_args { 1001.1Smrg bus_space_tag_t cd_tag; 1011.1Smrg bus_space_handle_t cd_handle; 1021.1Smrg u_char (*cd_ackfunc)(void *, int); 1031.1Smrg void *cd_ackfunc_arg; 1041.1Smrg u_int cd_osc; 1051.1Smrg}; 1061.1Smrg 1071.1Smrg/* 1081.1Smrg * device match routine: is there an sio16 present? 1091.1Smrg * 1101.1Smrg * note that we can not put "sio16" in the cfdriver, as this is an 1111.1Smrg * illegal name, so we have to hard code it here. 1121.1Smrg */ 1131.1Smrg#define SIO16_ROM_NAME "sio16" 1141.1Smrgint 1151.1Smrgsio16_match(parent, cf, aux) 1161.1Smrg struct device *parent; 1171.1Smrg struct cfdata *cf; 1181.1Smrg void *aux; 1191.1Smrg{ 1201.1Smrg struct sbus_attach_args *sa = aux; 1211.1Smrg 1221.1Smrg /* does the prom think i'm an sio16? */ 1231.1Smrg if (strcmp(SIO16_ROM_NAME, sa->sa_name) != 0) 1241.1Smrg return (0); 1251.1Smrg 1261.1Smrg return (1); 1271.1Smrg} 1281.1Smrg 1291.1Smrg/* 1301.1Smrg * device attach routine: go attach all sub devices. 1311.1Smrg */ 1321.1Smrgvoid 1331.1Smrgsio16_attach(parent, self, aux) 1341.1Smrg struct device *parent, *self; 1351.1Smrg void *aux; 1361.1Smrg{ 1371.1Smrg struct sbus_attach_args *sa = aux; 1381.1Smrg struct sio16_softc *sc = (struct sio16_softc *)self; 1391.1Smrg bus_space_handle_t h; 1401.1Smrg char *mode, *model; 1411.1Smrg int i; 1421.1Smrg 1431.1Smrg if (sa->sa_nreg != 4) 1441.1Smrg panic("sio16_attach: got %d registers intead of 4\n", 1451.1Smrg sa->sa_nreg); 1461.1Smrg 1471.1Smrg /* copy our bus tag, we will need it */ 1481.1Smrg sc->sc_tag = sa->sa_bustag; 1491.1Smrg 1501.1Smrg /* 1511.1Smrg * sio16 has 4 register mappings. a single byte configuration 1521.1Smrg * register, 2 128 byte regions for the cd180 registers, and 1531.1Smrg * a 4 byte region for interrupt acknowledgement. 1541.1Smrg */ 1551.1Smrg if (sbus_bus_map(sa->sa_bustag, 1561.1Smrg sa->sa_reg[0].sbr_slot, 1571.1Smrg sa->sa_reg[0].sbr_offset, 1581.1Smrg sa->sa_reg[0].sbr_size, 1591.4Seeh 0, &h) != 0) { 1601.1Smrg printf("%s at sbus: can not map registers 0\n", 1611.1Smrg self->dv_xname); 1621.1Smrg return; 1631.1Smrg } 1641.1Smrg sc->sc_configreg = h; 1651.1Smrg if (sbus_bus_map(sa->sa_bustag, 1661.1Smrg sa->sa_reg[1].sbr_slot, 1671.1Smrg sa->sa_reg[1].sbr_offset, 1681.1Smrg sa->sa_reg[1].sbr_size, 1691.4Seeh 0, &h) != 0) { 1701.1Smrg printf("%s at sbus: can not map registers 1\n", 1711.1Smrg self->dv_xname); 1721.1Smrg return; 1731.1Smrg } 1741.1Smrg sc->sc_reg[0] = h; 1751.1Smrg if (sbus_bus_map(sa->sa_bustag, 1761.1Smrg sa->sa_reg[2].sbr_slot, 1771.1Smrg sa->sa_reg[2].sbr_offset, 1781.1Smrg sa->sa_reg[2].sbr_size, 1791.4Seeh 0, &h) != 0) { 1801.1Smrg printf("%s at sbus: can not map registers 2\n", 1811.1Smrg self->dv_xname); 1821.1Smrg return; 1831.1Smrg } 1841.1Smrg sc->sc_reg[1] = h; 1851.1Smrg if (sbus_bus_map(sa->sa_bustag, 1861.1Smrg sa->sa_reg[3].sbr_slot, 1871.1Smrg sa->sa_reg[3].sbr_offset, 1881.1Smrg sa->sa_reg[3].sbr_size, 1891.4Seeh 0, &h) != 0) { 1901.1Smrg printf("%s at sbus: can not map registers 3\n", 1911.1Smrg self->dv_xname); 1921.1Smrg return; 1931.1Smrg } 1941.1Smrg sc->sc_ack = h; 1951.1Smrg 1961.1Smrg mode = PROM_getpropstring(sa->sa_node, "mode"); 1971.1Smrg if (mode) 1981.1Smrg printf(", %s mode", mode); 1991.1Smrg 2001.1Smrg /* get the clock frequency */ 2011.1Smrg sc->sc_clk = PROM_getpropint(sa->sa_node, "clk", 24000); 2021.1Smrg 2031.1Smrg model = PROM_getpropstring(sa->sa_node, "model"); 2041.1Smrg if (model == 0) { 2051.1Smrg printf(", no model property, bailing\n"); 2061.1Smrg return; 2071.1Smrg } 2081.1Smrg 2091.1Smrg /* are we an 1600se? */ 2101.1Smrg if (strcmp(model, "1600se") == 0) { 2111.1Smrg printf(", 16 channels"); 2121.1Smrg sc->sc_ncd180 = 2; 2131.1Smrg } else { 2141.1Smrg printf(", don't know model %s, bailing\n", model); 2151.1Smrg return; 2161.1Smrg } 2171.1Smrg 2181.1Smrg /* set up our sbus connections */ 2191.1Smrg sbus_establish(&sc->sc_sd, &sc->sc_dev); 2201.1Smrg 2211.1Smrg /* establish interrupt channel */ 2221.1Smrg (void)bus_intr_establish(sa->sa_bustag, sa->sa_pri, IPL_TTY, 0, 2231.1Smrg cd18xx_hardintr, sc); 2241.1Smrg 2251.1Smrg /* reset the board, and turn on interrupts and I/O */ 2261.1Smrg bus_space_write_1(sa->sa_bustag, sc->sc_configreg, 0, 0); 2271.1Smrg delay(100); 2281.1Smrg bus_space_write_1(sa->sa_bustag, sc->sc_configreg, 0, 2291.1Smrg SIO16_CONFIGREG_ENABLE_IO | SIO16_CONFIGREG_ENABLE_IRQ | 2301.1Smrg (((sa->sa_pri) & 0x0f) >> 2)); 2311.1Smrg delay(10000); 2321.1Smrg 2331.1Smrg printf("\n"); 2341.1Smrg 2351.1Smrg /* finally, configure the clcd's underneath */ 2361.1Smrg for (i = 0; i < sc->sc_ncd180; i++) { 2371.1Smrg struct sio16_attach_args cd; 2381.1Smrg 2391.1Smrg cd.cd_tag = sa->sa_bustag; 2401.1Smrg cd.cd_osc = sc->sc_clk * 100; 2411.1Smrg cd.cd_handle = (bus_space_handle_t)sc->sc_reg[i]; 2421.1Smrg cd.cd_ackfunc = sio16_ackfunc; 2431.1Smrg cd.cd_ackfunc_arg = sc; 2441.1Smrg (void)config_found(self, (void *)&cd, NULL); 2451.1Smrg } 2461.1Smrg} 2471.1Smrg 2481.1Smrg/* 2491.1Smrg * note that the addresses used in this function match those assigned 2501.1Smrg * in clcd_attach() below, or the various service match routines. 2511.1Smrg */ 2521.1Smrgu_char 2531.1Smrgsio16_ackfunc(v, who) 2541.1Smrg void *v; 2551.1Smrg int who; 2561.1Smrg{ 2571.1Smrg struct sio16_softc *sc = v; 2581.1Smrg bus_size_t addr; 2591.1Smrg 2601.1Smrg switch (who) { 2611.1Smrg case CD18xx_INTRACK_RxINT: 2621.1Smrg case CD18xx_INTRACK_REINT: 2631.1Smrg addr = SIO16_RINT_ACK; 2641.1Smrg break; 2651.1Smrg case CD18xx_INTRACK_TxINT: 2661.1Smrg addr = SIO16_TINT_ACK; 2671.1Smrg break; 2681.1Smrg case CD18xx_INTRACK_MxINT: 2691.1Smrg addr = SIO16_MINT_ACK; 2701.1Smrg break; 2711.1Smrg default: 2721.1Smrg panic("%s: sio16_ackfunc: unknown ackfunc %d", 2731.1Smrg sc->sc_dev.dv_xname, who); 2741.1Smrg } 2751.1Smrg return (bus_space_read_1(sc->sc_tag, sc->sc_ack, addr)); 2761.1Smrg} 2771.1Smrg 2781.1Smrg/* 2791.1Smrg * we attach two `clcd' instances per 1600se, that each call the 2801.1Smrg * backend cd18xx driver for help. 2811.1Smrg */ 2821.1Smrgstatic int clcd_match(struct device *, struct cfdata *, void *); 2831.1Smrgstatic void clcd_attach(struct device *, struct device *, void *); 2841.1Smrg 2851.1Smrgstruct cfattach clcd_ca = { 2861.1Smrg sizeof(struct cd18xx_softc), clcd_match, clcd_attach 2871.1Smrg}; 2881.1Smrg 2891.1Smrgstatic int 2901.1Smrgclcd_match(parent, cf, aux) 2911.1Smrg struct device *parent; 2921.1Smrg struct cfdata *cf; 2931.1Smrg void *aux; 2941.1Smrg{ 2951.1Smrg 2961.1Smrg /* XXX */ 2971.1Smrg return 1; 2981.1Smrg} 2991.1Smrg 3001.1Smrgstatic void 3011.1Smrgclcd_attach(parent, self, aux) 3021.1Smrg struct device *parent, *self; 3031.1Smrg void *aux; 3041.1Smrg{ 3051.1Smrg struct cd18xx_softc *sc = (struct cd18xx_softc *)self; 3061.1Smrg struct sio16_attach_args *args = aux; 3071.1Smrg 3081.1Smrg sc->sc_tag = args->cd_tag; 3091.1Smrg sc->sc_handle = args->cd_handle; 3101.1Smrg sc->sc_osc = args->cd_osc; 3111.1Smrg sc->sc_ackfunc = args->cd_ackfunc; 3121.1Smrg sc->sc_ackfunc_arg = args->cd_ackfunc_arg; 3131.1Smrg sc->sc_msmr = SIO16_MINT_ACK; 3141.1Smrg sc->sc_tsmr = SIO16_TINT_ACK; 3151.1Smrg sc->sc_rsmr = SIO16_RINT_ACK; 3161.1Smrg 3171.1Smrg /* call the common code */ 3181.1Smrg cd18xx_attach(sc); 3191.1Smrg} 320