1 /*- 2 * Copyright (c) 2009-2010 The FreeBSD Foundation 3 * All rights reserved. 4 * 5 * This software was developed by Semihalf under sponsorship from 6 * the FreeBSD Foundation. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 1. Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #include <sys/cdefs.h> 31 __FBSDID("$FreeBSD$"); 32 33 #include "opt_platform.h" 34 35 #include <sys/param.h> 36 #include <sys/bus.h> 37 #include <sys/kernel.h> 38 #include <sys/module.h> 39 #include <sys/systm.h> 40 41 #include <vm/vm.h> 42 #include <vm/pmap.h> 43 44 #include <machine/bus.h> 45 46 #include <dev/fdt/fdt_common.h> 47 #include <dev/ofw/ofw_bus.h> 48 #include <dev/ofw/ofw_bus_subr.h> 49 #include <dev/uart/uart.h> 50 #include <dev/uart/uart_bus.h> 51 #include <dev/uart/uart_cpu.h> 52 #include <dev/uart/uart_cpu_fdt.h> 53 54 /* 55 * UART console routines. 56 */ 57 bus_space_tag_t uart_bus_space_io; 58 bus_space_tag_t uart_bus_space_mem; 59 60 int 61 uart_cpu_eqres(struct uart_bas *b1, struct uart_bas *b2) 62 { 63 64 if (b1->bst != b2->bst) 65 return (0); 66 if (pmap_kextract(b1->bsh) == 0) 67 return (0); 68 if (pmap_kextract(b2->bsh) == 0) 69 return (0); 70 return ((pmap_kextract(b1->bsh) == pmap_kextract(b2->bsh)) ? 1 : 0); 71 } 72 73 static int 74 phandle_chosen_propdev(phandle_t chosen, const char *name, phandle_t *node) 75 { 76 char buf[64]; 77 78 if (OF_getprop(chosen, name, buf, sizeof(buf)) <= 0) 79 return (ENXIO); 80 if ((*node = OF_finddevice(buf)) == -1) 81 return (ENXIO); 82 83 return (0); 84 } 85 86 static const struct ofw_compat_data * 87 uart_fdt_find_compatible(phandle_t node, const struct ofw_compat_data *cd) 88 { 89 const struct ofw_compat_data *ocd; 90 91 for (ocd = cd; ocd->ocd_str != NULL; ocd++) { 92 if (fdt_is_compatible(node, ocd->ocd_str)) 93 return (ocd); 94 } 95 return (NULL); 96 } 97 98 static uintptr_t 99 uart_fdt_find_by_node(phandle_t node, int class_list) 100 { 101 struct ofw_compat_data **cd; 102 const struct ofw_compat_data *ocd; 103 104 if (class_list) { 105 SET_FOREACH(cd, uart_fdt_class_set) { 106 ocd = uart_fdt_find_compatible(node, *cd); 107 if ((ocd != NULL) && (ocd->ocd_data != 0)) 108 return (ocd->ocd_data); 109 } 110 } else { 111 SET_FOREACH(cd, uart_fdt_class_and_device_set) { 112 ocd = uart_fdt_find_compatible(node, *cd); 113 if ((ocd != NULL) && (ocd->ocd_data != 0)) 114 return (ocd->ocd_data); 115 } 116 } 117 return (0); 118 } 119 120 int 121 uart_cpu_getdev(int devtype, struct uart_devinfo *di) 122 { 123 struct uart_class *class; 124 bus_space_tag_t bst; 125 bus_space_handle_t bsh; 126 u_int shift, rclk; 127 int br, err; 128 129 /* Allow overriding the FDT using the environment. */ 130 class = &uart_ns8250_class; 131 err = uart_getenv(devtype, di, class); 132 if (!err) 133 return (0); 134 135 if (devtype != UART_DEV_CONSOLE) 136 return (ENXIO); 137 138 err = uart_cpu_fdt_probe(&class, &bst, &bsh, &br, &rclk, &shift); 139 if (err != 0) 140 return (err); 141 142 /* 143 * Finalize configuration. 144 */ 145 di->bas.chan = 0; 146 di->bas.regshft = shift; 147 di->baudrate = br; 148 di->bas.rclk = rclk; 149 di->ops = uart_getops(class); 150 di->databits = 8; 151 di->stopbits = 1; 152 di->parity = UART_PARITY_NONE; 153 di->bas.bst = bst; 154 di->bas.bsh = bsh; 155 156 uart_bus_space_mem = di->bas.bst; 157 uart_bus_space_io = NULL; 158 159 return (err); 160 } 161