Home | History | Annotate | Line # | Download | only in marvell
com_mv.c revision 1.3.4.2
      1 /*	$NetBSD: com_mv.c,v 1.3.4.2 2010/08/17 06:46:16 uebayasi Exp $	*/
      2 /*
      3  * Copyright (c) 2007, 2010 KIYOHARA Takashi
      4  * All rights reserved.
      5  *
      6  * Redistribution and use in source and binary forms, with or without
      7  * modification, are permitted provided that the following conditions
      8  * are met:
      9  * 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
     17  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
     18  * DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
     19  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
     20  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
     21  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
     23  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
     24  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     25  * POSSIBILITY OF SUCH DAMAGE.
     26  */
     27 
     28 #include <sys/cdefs.h>
     29 __KERNEL_RCSID(0, "$NetBSD: com_mv.c,v 1.3.4.2 2010/08/17 06:46:16 uebayasi Exp $");
     30 
     31 #include <sys/param.h>
     32 #include <sys/bus.h>
     33 #include <sys/device.h>
     34 #include <sys/errno.h>
     35 #include <sys/termios.h>
     36 
     37 #include <dev/marvell/gtvar.h>
     38 #include <dev/marvell/marvellreg.h>
     39 #include <dev/marvell/marvellvar.h>
     40 
     41 #include <dev/ic/comvar.h>
     42 
     43 #include <prop/proplib.h>
     44 
     45 #define MVUART_SIZE		0x20
     46 
     47 
     48 static int mvuart_match(device_t, struct cfdata *, void *);
     49 static void mvuart_attach(device_t, device_t, void *);
     50 
     51 CFATTACH_DECL_NEW(mvuart_gt, sizeof(struct com_softc),
     52     mvuart_match, mvuart_attach, NULL, NULL);
     53 CFATTACH_DECL_NEW(mvuart_mbus, sizeof(struct com_softc),
     54     mvuart_match, mvuart_attach, NULL, NULL);
     55 
     56 #ifdef COM_REGMAP
     57 #define MVUART_INIT_REGS(regs, tag, hdl, addr, size)		\
     58 	do {							\
     59 		int i;						\
     60 								\
     61 		regs.cr_iot = tag;				\
     62 		regs.cr_ioh = hdl;				\
     63 		regs.cr_iobase = addr;				\
     64 		regs.cr_nports = size;				\
     65 		for (i = 0; i < __arraycount(regs.cr_map); i++)	\
     66 			regs.cr_map[i] = com_std_map[i] << 2;	\
     67 	} while (0)
     68 #else
     69 #define MVUART_INIT_REGS(regs, tag, hdl, addr, size) \
     70 	COM_INIT_REGS(regs, tag, hdl, addr)
     71 #endif
     72 
     73 
     74 /* ARGSUSED */
     75 static int
     76 mvuart_match(device_t parent, struct cfdata *match, void *aux)
     77 {
     78 	struct marvell_attach_args *mva = aux;
     79 	struct com_regs regs;
     80 	bus_space_handle_t ioh;
     81 
     82 	if (strcmp(mva->mva_name, match->cf_name) != 0)
     83 		return 0;
     84 	if (mva->mva_offset == MVA_OFFSET_DEFAULT ||
     85 	    mva->mva_irq == MVA_IRQ_DEFAULT)
     86 		return 0;
     87 
     88 	if (com_is_console(mva->mva_iot, mva->mva_addr + mva->mva_offset, NULL))
     89 		return 1;
     90 
     91 	if (bus_space_subregion(mva->mva_iot, mva->mva_ioh, mva->mva_offset,
     92 	    MVUART_SIZE, &ioh))
     93 		return 0;
     94 	MVUART_INIT_REGS(regs, mva->mva_iot, ioh, mva->mva_offset, MVUART_SIZE);
     95 	if (!com_probe_subr(&regs))
     96 		return 0;
     97 
     98 	mva->mva_size = MVUART_SIZE;
     99 	return 1;
    100 }
    101 
    102 /* ARGSUSED */
    103 static void
    104 mvuart_attach(device_t parent, device_t self, void *aux)
    105 {
    106 	struct com_softc *sc = device_private(self);
    107 	struct marvell_attach_args *mva = aux;
    108 	bus_space_tag_t iot;
    109 	bus_space_handle_t ioh;
    110 	prop_dictionary_t dict = device_properties(self);
    111 
    112 	sc->sc_dev = self;
    113 
    114 	if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_frequency)) {
    115 		aprint_error(": no frequency property\n");
    116 		return;
    117 	}
    118 
    119 	iot = mva->mva_iot;
    120 	if (!com_is_console(iot, mva->mva_addr + mva->mva_offset, &ioh)) {
    121 		if (bus_space_subregion(iot, mva->mva_ioh, mva->mva_offset,
    122 		    mva->mva_size, &ioh)) {
    123 			aprint_error(": can't map registers\n");
    124 			return;
    125 		}
    126 	}
    127 	MVUART_INIT_REGS(sc->sc_regs,
    128 	    iot, ioh, mva->mva_addr + mva->mva_offset, mva->mva_size);
    129 
    130 	com_attach_subr(sc);
    131 
    132 	marvell_intr_establish(mva->mva_irq, IPL_SERIAL, comintr, sc);
    133 }
    134 
    135 #ifdef COM_REGMAP
    136 int mvuart_cnattach(bus_space_tag_t, bus_addr_t, int, uint32_t, int);
    137 
    138 int
    139 mvuart_cnattach(bus_space_tag_t iot, bus_addr_t addr, int baud,
    140 		uint32_t sysfreq, int mode)
    141 {
    142 	struct com_regs regs;
    143 
    144 	MVUART_INIT_REGS(regs, iot, 0x0, addr, MVUART_SIZE);
    145 
    146 	return comcnattach1(&regs, baud, sysfreq, COM_TYPE_16550_NOERS, mode);
    147 }
    148 #endif /* COM_REGMAP */
    149