Deleted Added
full compact
uart_bus_xlr_iodi.c (198625) uart_bus_xlr_iodi.c (198956)
1/*-
2 * Copyright (c) 2006 Raza Microelectronics
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 24 unchanged lines hidden (view full) ---

33#include <sys/kernel.h>
34#include <sys/module.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>
37
38#include <machine/bus.h>
39#include <sys/rman.h>
40#include <machine/resource.h>
1/*-
2 * Copyright (c) 2006 Raza Microelectronics
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 24 unchanged lines hidden (view full) ---

33#include <sys/kernel.h>
34#include <sys/module.h>
35#include <sys/lock.h>
36#include <sys/mutex.h>
37
38#include <machine/bus.h>
39#include <sys/rman.h>
40#include <machine/resource.h>
41
41#include <mips/rmi/iomap.h>
42#include <dev/uart/uart.h>
43#include <dev/uart/uart_bus.h>
42#include <dev/uart/uart.h>
43#include <dev/uart/uart_bus.h>
44#include <dev/uart/uart_cpu.h>
44
45static int uart_iodi_probe(device_t dev);
46
47static device_method_t uart_iodi_methods[] = {
48 /* Device interface */
49 DEVMETHOD(device_probe, uart_iodi_probe),
50 DEVMETHOD(device_attach, uart_bus_attach),
51 DEVMETHOD(device_detach, uart_bus_detach),
52 {0, 0}
53};
54
55static driver_t uart_iodi_driver = {
56 uart_driver_name,
57 uart_iodi_methods,
58 sizeof(struct uart_softc),
59};
60
45
46static int uart_iodi_probe(device_t dev);
47
48static device_method_t uart_iodi_methods[] = {
49 /* Device interface */
50 DEVMETHOD(device_probe, uart_iodi_probe),
51 DEVMETHOD(device_attach, uart_bus_attach),
52 DEVMETHOD(device_detach, uart_bus_detach),
53 {0, 0}
54};
55
56static driver_t uart_iodi_driver = {
57 uart_driver_name,
58 uart_iodi_methods,
59 sizeof(struct uart_softc),
60};
61
62
63extern SLIST_HEAD(uart_devinfo_list, uart_devinfo) uart_sysdevs;
61static int
62uart_iodi_probe(device_t dev)
63{
64 struct uart_softc *sc;
64static int
65uart_iodi_probe(device_t dev)
66{
67 struct uart_softc *sc;
65
66 sc = device_get_softc(dev);
68 sc = device_get_softc(dev);
69 sc->sc_sysdev = SLIST_FIRST(&uart_sysdevs);
67 sc->sc_class = &uart_ns8250_class;
70 sc->sc_class = &uart_ns8250_class;
68
71 bcopy(&sc->sc_sysdev->bas, &sc->sc_bas, sizeof(sc->sc_bas));
72 sc->sc_sysdev->bas.bst = rmi_bus_space;
73 sc->sc_sysdev->bas.bsh = MIPS_PHYS_TO_KSEG1(XLR_UART0ADDR);
74 sc->sc_bas.bst = rmi_bus_space;
75 sc->sc_bas.bsh = MIPS_PHYS_TO_KSEG1(XLR_UART0ADDR);
69 /* regshft = 2, rclk = 66000000, rid = 0, chan = 0 */
70 return (uart_bus_probe(dev, 2, 66000000, 0, 0));
71}
72
73DRIVER_MODULE(uart, iodi, uart_iodi_driver, uart_devclass, 0, 0);
76 /* regshft = 2, rclk = 66000000, rid = 0, chan = 0 */
77 return (uart_bus_probe(dev, 2, 66000000, 0, 0));
78}
79
80DRIVER_MODULE(uart, iodi, uart_iodi_driver, uart_devclass, 0, 0);