Home | History | Annotate | Line # | Download | only in xilinx
zynq7000_uart.c revision 1.1
      1  1.1  skrll /*	$NetBSD: zynq7000_uart.c,v 1.1 2019/06/11 13:01:48 skrll Exp $	*/
      2  1.1  skrll 
      3  1.1  skrll /*-
      4  1.1  skrll  * Copyright (c) 2015  Genetec Corporation.  All rights reserved.
      5  1.1  skrll  * Written by Hashimoto Kenichi for Genetec Corporation.
      6  1.1  skrll  *
      7  1.1  skrll  * Redistribution and use in source and binary forms, with or without
      8  1.1  skrll  * modification, are permitted provided that the following conditions
      9  1.1  skrll  * are met:
     10  1.1  skrll  * 1. Redistributions of source code must retain the above copyright
     11  1.1  skrll  *    notice, this list of conditions and the following disclaimer.
     12  1.1  skrll  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  skrll  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  skrll  *    documentation and/or other materials provided with the distribution.
     15  1.1  skrll  *
     16  1.1  skrll  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     17  1.1  skrll  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.1  skrll  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.1  skrll  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.1  skrll  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.1  skrll  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.1  skrll  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.1  skrll  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.1  skrll  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.1  skrll  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.1  skrll  * POSSIBILITY OF SUCH DAMAGE.
     27  1.1  skrll  */
     28  1.1  skrll 
     29  1.1  skrll #include <sys/cdefs.h>
     30  1.1  skrll __KERNEL_RCSID(0, "$NetBSD: zynq7000_uart.c,v 1.1 2019/06/11 13:01:48 skrll Exp $");
     31  1.1  skrll 
     32  1.1  skrll #include "opt_soc.h"
     33  1.1  skrll #include "opt_console.h"
     34  1.1  skrll 
     35  1.1  skrll #include <sys/param.h>
     36  1.1  skrll #include <sys/bus.h>
     37  1.1  skrll #include <sys/device.h>
     38  1.1  skrll 
     39  1.1  skrll #include <arm/xilinx/zynq_uartreg.h>
     40  1.1  skrll #include <arm/xilinx/zynq_uartvar.h>
     41  1.1  skrll 
     42  1.1  skrll #include <dev/fdt/fdtvar.h>
     43  1.1  skrll 
     44  1.1  skrll static const char * compatible[] = {
     45  1.1  skrll 	"xlnx,xuartps",
     46  1.1  skrll 	"cdns,uart-r1p8",
     47  1.1  skrll 	NULL
     48  1.1  skrll };
     49  1.1  skrll 
     50  1.1  skrll int
     51  1.1  skrll zynquart_match(device_t parent, struct cfdata *cf, void *aux)
     52  1.1  skrll {
     53  1.1  skrll 	struct fdt_attach_args * const faa = aux;
     54  1.1  skrll 
     55  1.1  skrll 	return of_match_compatible(faa->faa_phandle, compatible);
     56  1.1  skrll }
     57  1.1  skrll 
     58  1.1  skrll void
     59  1.1  skrll zynquart_attach(device_t parent, device_t self, void *aux)
     60  1.1  skrll {
     61  1.1  skrll 	struct fdt_attach_args * faa = aux;
     62  1.1  skrll 	const int phandle = faa->faa_phandle;
     63  1.1  skrll 	char intrstr[128];
     64  1.1  skrll 	bus_addr_t addr;
     65  1.1  skrll 	bus_size_t size;
     66  1.1  skrll 
     67  1.1  skrll 	if (fdtbus_get_reg(phandle, 0, &addr, &size) != 0) {
     68  1.1  skrll 		aprint_error(": couldn't get registers\n");
     69  1.1  skrll 		return;
     70  1.1  skrll 	}
     71  1.1  skrll 
     72  1.1  skrll 	if (!fdtbus_intr_str(phandle, 0, intrstr, sizeof(intrstr))) {
     73  1.1  skrll 		aprint_error(": failed to decode interrupt\n");
     74  1.1  skrll 		return;
     75  1.1  skrll 	}
     76  1.1  skrll 
     77  1.1  skrll 	if (fdtbus_intr_establish(phandle, 0, IPL_SERIAL, IST_LEVEL,
     78  1.1  skrll 		zynquartintr, device_private(self)) == NULL) {
     79  1.1  skrll 		aprint_error_dev(self, "failed to establish interrupt on %s\n", intrstr);
     80  1.1  skrll 		return;
     81  1.1  skrll 	}
     82  1.1  skrll 	aprint_normal_dev(self, "interrupting on %s\n", intrstr);
     83  1.1  skrll 
     84  1.1  skrll 	zynquart_attach_common(parent, self, faa->faa_bst, addr, size, 0);
     85  1.1  skrll }
     86  1.1  skrll 
     87  1.1  skrll /*
     88  1.1  skrll  * Console support
     89  1.1  skrll  */
     90  1.1  skrll 
     91  1.1  skrll static int
     92  1.1  skrll zynq_uart_console_match(int phandle)
     93  1.1  skrll {
     94  1.1  skrll 	return of_match_compatible(phandle, compatible);
     95  1.1  skrll }
     96  1.1  skrll 
     97  1.1  skrll static void
     98  1.1  skrll zynq_uart_console_consinit(struct fdt_attach_args *faa, u_int uart_freq)
     99  1.1  skrll {
    100  1.1  skrll 	const int phandle = faa->faa_phandle;
    101  1.1  skrll 	bus_space_tag_t bst = faa->faa_bst;
    102  1.1  skrll 	bus_addr_t addr;
    103  1.1  skrll 	tcflag_t flags;
    104  1.1  skrll 	int speed;
    105  1.1  skrll 
    106  1.1  skrll 	fdtbus_get_reg(phandle, 0, &addr, NULL);
    107  1.1  skrll 	speed = fdtbus_get_stdout_speed();
    108  1.1  skrll 	if (speed < 0)
    109  1.1  skrll 		speed = 115200;	/* default */
    110  1.1  skrll 	flags = fdtbus_get_stdout_flags();
    111  1.1  skrll 
    112  1.1  skrll 	if (zynquart_cons_attach(bst, addr, speed, flags))
    113  1.1  skrll 		panic("Cannot initialize zynq uart console");
    114  1.1  skrll }
    115  1.1  skrll 
    116  1.1  skrll static const struct fdt_console zynq_uart_console = {
    117  1.1  skrll 	.match = zynq_uart_console_match,
    118  1.1  skrll 	.consinit = zynq_uart_console_consinit,
    119  1.1  skrll };
    120  1.1  skrll 
    121  1.1  skrll FDT_CONSOLE(zynq_uart, &zynq_uart_console);
    122