1b9305a86SEmmanuel Vadot /*-
2b9305a86SEmmanuel Vadot * Copyright (c) 2019 Emmanuel Vadot <manu@FreeBSD.org>
3b9305a86SEmmanuel Vadot *
40050ea24SMichal Meloun * Copyright (c) 2020 Oskar Holmlund <oskar.holmlund@ohdata.se>
50050ea24SMichal Meloun *
6b9305a86SEmmanuel Vadot * Redistribution and use in source and binary forms, with or without
7b9305a86SEmmanuel Vadot * modification, are permitted provided that the following conditions
8b9305a86SEmmanuel Vadot * are met:
9b9305a86SEmmanuel Vadot * 1. Redistributions of source code must retain the above copyright
10b9305a86SEmmanuel Vadot * notice, this list of conditions and the following disclaimer.
11b9305a86SEmmanuel Vadot * 2. Redistributions in binary form must reproduce the above copyright
12b9305a86SEmmanuel Vadot * notice, this list of conditions and the following disclaimer in the
13b9305a86SEmmanuel Vadot * documentation and/or other materials provided with the distribution.
14b9305a86SEmmanuel Vadot *
15b9305a86SEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16b9305a86SEmmanuel Vadot * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17b9305a86SEmmanuel Vadot * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18b9305a86SEmmanuel Vadot * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19b9305a86SEmmanuel Vadot * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
20b9305a86SEmmanuel Vadot * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21b9305a86SEmmanuel Vadot * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
22b9305a86SEmmanuel Vadot * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
23b9305a86SEmmanuel Vadot * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24b9305a86SEmmanuel Vadot * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25b9305a86SEmmanuel Vadot * SUCH DAMAGE.
26b9305a86SEmmanuel Vadot */
27b9305a86SEmmanuel Vadot
28b9305a86SEmmanuel Vadot #include <sys/param.h>
29b9305a86SEmmanuel Vadot #include <sys/systm.h>
30b9305a86SEmmanuel Vadot #include <sys/bus.h>
31b9305a86SEmmanuel Vadot #include <sys/fbio.h>
32b9305a86SEmmanuel Vadot #include <sys/kernel.h>
33b9305a86SEmmanuel Vadot #include <sys/module.h>
340050ea24SMichal Meloun #include <sys/queue.h>
35b9305a86SEmmanuel Vadot #include <sys/rman.h>
36b9305a86SEmmanuel Vadot #include <sys/resource.h>
37b9305a86SEmmanuel Vadot #include <machine/bus.h>
38b9305a86SEmmanuel Vadot #include <vm/vm.h>
39b9305a86SEmmanuel Vadot #include <vm/vm_extern.h>
40b9305a86SEmmanuel Vadot #include <vm/vm_kern.h>
41b9305a86SEmmanuel Vadot #include <vm/pmap.h>
42b9305a86SEmmanuel Vadot
43b9305a86SEmmanuel Vadot #include <dev/fdt/simplebus.h>
44b9305a86SEmmanuel Vadot
45b9305a86SEmmanuel Vadot #include <dev/ofw/ofw_bus.h>
46b9305a86SEmmanuel Vadot #include <dev/ofw/ofw_bus_subr.h>
47b9305a86SEmmanuel Vadot
48be82b3a0SEmmanuel Vadot #include <dev/clk/clk.h>
49b9305a86SEmmanuel Vadot
500050ea24SMichal Meloun #include <arm/ti/ti_sysc.h>
510050ea24SMichal Meloun #include <arm/ti/clk/clock_common.h>
520050ea24SMichal Meloun
530050ea24SMichal Meloun #define DEBUG_SYSC 0
540050ea24SMichal Meloun
550050ea24SMichal Meloun #if DEBUG_SYSC
560050ea24SMichal Meloun #define DPRINTF(dev, msg...) device_printf(dev, msg)
570050ea24SMichal Meloun #else
580050ea24SMichal Meloun #define DPRINTF(dev, msg...)
590050ea24SMichal Meloun #endif
600050ea24SMichal Meloun
610050ea24SMichal Meloun /* Documentation/devicetree/bindings/bus/ti-sysc.txt
620050ea24SMichal Meloun *
630050ea24SMichal Meloun * Documentation/devicetree/clock/clock-bindings.txt
640050ea24SMichal Meloun * Defines phandle + optional pair
650050ea24SMichal Meloun * Documentation/devicetree/clock/ti-clkctl.txt
660050ea24SMichal Meloun */
67b9305a86SEmmanuel Vadot
68b9305a86SEmmanuel Vadot static int ti_sysc_probe(device_t dev);
69b9305a86SEmmanuel Vadot static int ti_sysc_attach(device_t dev);
70b9305a86SEmmanuel Vadot static int ti_sysc_detach(device_t dev);
71b9305a86SEmmanuel Vadot
720050ea24SMichal Meloun #define TI_SYSC_DRA7_MCAN 15
730050ea24SMichal Meloun #define TI_SYSC_USB_HOST_FS 14
740050ea24SMichal Meloun #define TI_SYSC_DRA7_MCASP 13
750050ea24SMichal Meloun #define TI_SYSC_MCASP 12
760050ea24SMichal Meloun #define TI_SYSC_OMAP_AES 11
770050ea24SMichal Meloun #define TI_SYSC_OMAP3_SHAM 10
780050ea24SMichal Meloun #define TI_SYSC_OMAP4_SR 9
790050ea24SMichal Meloun #define TI_SYSC_OMAP3630_SR 8
800050ea24SMichal Meloun #define TI_SYSC_OMAP3430_SR 7
810050ea24SMichal Meloun #define TI_SYSC_OMAP4_TIMER 6
820050ea24SMichal Meloun #define TI_SYSC_OMAP2_TIMER 5
830050ea24SMichal Meloun /* Above needs special workarounds */
840050ea24SMichal Meloun #define TI_SYSC_OMAP4_SIMPLE 4
850050ea24SMichal Meloun #define TI_SYSC_OMAP4 3
860050ea24SMichal Meloun #define TI_SYSC_OMAP2 2
870050ea24SMichal Meloun #define TI_SYSC 1
880050ea24SMichal Meloun #define TI_SYSC_END 0
890050ea24SMichal Meloun
900050ea24SMichal Meloun static struct ofw_compat_data compat_data[] = {
910050ea24SMichal Meloun { "ti,sysc-dra7-mcan", TI_SYSC_DRA7_MCAN },
920050ea24SMichal Meloun { "ti,sysc-usb-host-fs", TI_SYSC_USB_HOST_FS },
930050ea24SMichal Meloun { "ti,sysc-dra7-mcasp", TI_SYSC_DRA7_MCASP },
940050ea24SMichal Meloun { "ti,sysc-mcasp", TI_SYSC_MCASP },
950050ea24SMichal Meloun { "ti,sysc-omap-aes", TI_SYSC_OMAP_AES },
960050ea24SMichal Meloun { "ti,sysc-omap3-sham", TI_SYSC_OMAP3_SHAM },
970050ea24SMichal Meloun { "ti,sysc-omap4-sr", TI_SYSC_OMAP4_SR },
980050ea24SMichal Meloun { "ti,sysc-omap3630-sr", TI_SYSC_OMAP3630_SR },
990050ea24SMichal Meloun { "ti,sysc-omap3430-sr", TI_SYSC_OMAP3430_SR },
1000050ea24SMichal Meloun { "ti,sysc-omap4-timer", TI_SYSC_OMAP4_TIMER },
1010050ea24SMichal Meloun { "ti,sysc-omap2-timer", TI_SYSC_OMAP2_TIMER },
1020050ea24SMichal Meloun /* Above needs special workarounds */
1030050ea24SMichal Meloun { "ti,sysc-omap4-simple", TI_SYSC_OMAP4_SIMPLE },
1040050ea24SMichal Meloun { "ti,sysc-omap4", TI_SYSC_OMAP4 },
1050050ea24SMichal Meloun { "ti,sysc-omap2", TI_SYSC_OMAP2 },
1060050ea24SMichal Meloun { "ti,sysc", TI_SYSC },
1070050ea24SMichal Meloun { NULL, TI_SYSC_END }
1080050ea24SMichal Meloun };
1090050ea24SMichal Meloun
1100050ea24SMichal Meloun /* reg-names can be "rev", "sysc" and "syss" */
1110050ea24SMichal Meloun static const char * reg_names[] = { "rev", "sysc", "syss" };
1120050ea24SMichal Meloun #define REG_REV 0
1130050ea24SMichal Meloun #define REG_SYSC 1
1140050ea24SMichal Meloun #define REG_SYSS 2
1150050ea24SMichal Meloun #define REG_MAX 3
1160050ea24SMichal Meloun
1170050ea24SMichal Meloun /* master idle / slave idle mode defined in 8.1.3.2.1 / 8.1.3.2.2 */
1188a7a4683SEmmanuel Vadot #include <dt-bindings/bus/ti-sysc.h>
1190050ea24SMichal Meloun #define SYSC_IDLE_MAX 4
1200050ea24SMichal Meloun
1210050ea24SMichal Meloun struct sysc_reg {
1220050ea24SMichal Meloun uint64_t address;
1230050ea24SMichal Meloun uint64_t size;
1240050ea24SMichal Meloun };
1250050ea24SMichal Meloun
1260050ea24SMichal Meloun struct clk_list {
1270050ea24SMichal Meloun TAILQ_ENTRY(clk_list) next;
1280050ea24SMichal Meloun clk_t clk;
1290050ea24SMichal Meloun };
1300050ea24SMichal Meloun
1310050ea24SMichal Meloun struct ti_sysc_softc {
1320050ea24SMichal Meloun struct simplebus_softc sc;
1330050ea24SMichal Meloun bool attach_done;
1340050ea24SMichal Meloun
1350050ea24SMichal Meloun device_t dev;
1360050ea24SMichal Meloun int device_type;
1370050ea24SMichal Meloun
1380050ea24SMichal Meloun struct sysc_reg reg[REG_MAX];
1390050ea24SMichal Meloun /* Offset from host base address */
1400050ea24SMichal Meloun uint64_t offset_reg[REG_MAX];
1410050ea24SMichal Meloun
1420050ea24SMichal Meloun uint32_t ti_sysc_mask;
1430050ea24SMichal Meloun int32_t ti_sysc_midle[SYSC_IDLE_MAX];
1440050ea24SMichal Meloun int32_t ti_sysc_sidle[SYSC_IDLE_MAX];
1450050ea24SMichal Meloun uint32_t ti_sysc_delay_us;
1460050ea24SMichal Meloun uint32_t ti_syss_mask;
1470050ea24SMichal Meloun
1480050ea24SMichal Meloun int num_clocks;
1490050ea24SMichal Meloun TAILQ_HEAD(, clk_list) clk_list;
1500050ea24SMichal Meloun
1510050ea24SMichal Meloun /* deprecated ti_hwmods */
1520050ea24SMichal Meloun bool ti_no_reset_on_init;
1530050ea24SMichal Meloun bool ti_no_idle_on_init;
1540050ea24SMichal Meloun bool ti_no_idle;
1550050ea24SMichal Meloun };
1560050ea24SMichal Meloun
1570050ea24SMichal Meloun /*
1580050ea24SMichal Meloun * All sysc seems to have a reg["rev"] register.
1590050ea24SMichal Meloun * Lets use that for identification of which module the driver are connected to.
1600050ea24SMichal Meloun */
1610050ea24SMichal Meloun uint64_t
ti_sysc_get_rev_address(device_t dev)1620050ea24SMichal Meloun ti_sysc_get_rev_address(device_t dev) {
1630050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1640050ea24SMichal Meloun
1650050ea24SMichal Meloun return (sc->reg[REG_REV].address);
1660050ea24SMichal Meloun }
1670050ea24SMichal Meloun
1680050ea24SMichal Meloun uint64_t
ti_sysc_get_rev_address_offset_host(device_t dev)1690050ea24SMichal Meloun ti_sysc_get_rev_address_offset_host(device_t dev) {
1700050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1710050ea24SMichal Meloun
1720050ea24SMichal Meloun return (sc->offset_reg[REG_REV]);
1730050ea24SMichal Meloun }
1740050ea24SMichal Meloun
1750050ea24SMichal Meloun uint64_t
ti_sysc_get_sysc_address(device_t dev)1760050ea24SMichal Meloun ti_sysc_get_sysc_address(device_t dev) {
1770050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1780050ea24SMichal Meloun
1790050ea24SMichal Meloun return (sc->reg[REG_SYSC].address);
1800050ea24SMichal Meloun }
1810050ea24SMichal Meloun
1820050ea24SMichal Meloun uint64_t
ti_sysc_get_sysc_address_offset_host(device_t dev)1830050ea24SMichal Meloun ti_sysc_get_sysc_address_offset_host(device_t dev) {
1840050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1850050ea24SMichal Meloun
1860050ea24SMichal Meloun return (sc->offset_reg[REG_SYSC]);
1870050ea24SMichal Meloun }
1880050ea24SMichal Meloun
1890050ea24SMichal Meloun uint64_t
ti_sysc_get_syss_address(device_t dev)1900050ea24SMichal Meloun ti_sysc_get_syss_address(device_t dev) {
1910050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1920050ea24SMichal Meloun
1930050ea24SMichal Meloun return (sc->reg[REG_SYSS].address);
1940050ea24SMichal Meloun }
1950050ea24SMichal Meloun
1960050ea24SMichal Meloun uint64_t
ti_sysc_get_syss_address_offset_host(device_t dev)1970050ea24SMichal Meloun ti_sysc_get_syss_address_offset_host(device_t dev) {
1980050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
1990050ea24SMichal Meloun
2000050ea24SMichal Meloun return (sc->offset_reg[REG_SYSS]);
2010050ea24SMichal Meloun }
2020050ea24SMichal Meloun
2030050ea24SMichal Meloun /*
2040050ea24SMichal Meloun * Due no memory region is assigned the sysc driver the children needs to
2050050ea24SMichal Meloun * handle the practical read/writes to the registers.
2060050ea24SMichal Meloun * Check if sysc has reset bit.
2070050ea24SMichal Meloun */
2080050ea24SMichal Meloun uint32_t
ti_sysc_get_soft_reset_bit(device_t dev)2090050ea24SMichal Meloun ti_sysc_get_soft_reset_bit(device_t dev) {
2100050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
2110050ea24SMichal Meloun switch (sc->device_type) {
2120050ea24SMichal Meloun case TI_SYSC_OMAP4_TIMER:
2130050ea24SMichal Meloun case TI_SYSC_OMAP4_SIMPLE:
2140050ea24SMichal Meloun case TI_SYSC_OMAP4:
2150050ea24SMichal Meloun if (sc->ti_sysc_mask & SYSC_OMAP4_SOFTRESET) {
2160050ea24SMichal Meloun return (SYSC_OMAP4_SOFTRESET);
2170050ea24SMichal Meloun }
2180050ea24SMichal Meloun break;
2190050ea24SMichal Meloun
2200050ea24SMichal Meloun case TI_SYSC_OMAP2_TIMER:
2210050ea24SMichal Meloun case TI_SYSC_OMAP2:
2220050ea24SMichal Meloun case TI_SYSC:
2230050ea24SMichal Meloun if (sc->ti_sysc_mask & SYSC_OMAP2_SOFTRESET) {
2240050ea24SMichal Meloun return (SYSC_OMAP2_SOFTRESET);
2250050ea24SMichal Meloun }
2260050ea24SMichal Meloun break;
2270050ea24SMichal Meloun default:
2280050ea24SMichal Meloun break;
2290050ea24SMichal Meloun }
2300050ea24SMichal Meloun
2310050ea24SMichal Meloun return (0);
2320050ea24SMichal Meloun }
2330050ea24SMichal Meloun
2340050ea24SMichal Meloun int
ti_sysc_clock_enable(device_t dev)2350050ea24SMichal Meloun ti_sysc_clock_enable(device_t dev) {
2360050ea24SMichal Meloun struct clk_list *clkp, *clkp_tmp;
2370050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
2380050ea24SMichal Meloun int err;
2390050ea24SMichal Meloun
2400050ea24SMichal Meloun TAILQ_FOREACH_SAFE(clkp, &sc->clk_list, next, clkp_tmp) {
2410050ea24SMichal Meloun err = clk_enable(clkp->clk);
2420050ea24SMichal Meloun
2430050ea24SMichal Meloun if (err) {
2440050ea24SMichal Meloun DPRINTF(sc->dev, "clk_enable %s failed %d\n",
2450050ea24SMichal Meloun clk_get_name(clkp->clk), err);
2460050ea24SMichal Meloun break;
2470050ea24SMichal Meloun }
2480050ea24SMichal Meloun }
2490050ea24SMichal Meloun return (err);
2500050ea24SMichal Meloun }
2510050ea24SMichal Meloun
2520050ea24SMichal Meloun int
ti_sysc_clock_disable(device_t dev)2530050ea24SMichal Meloun ti_sysc_clock_disable(device_t dev) {
2540050ea24SMichal Meloun struct clk_list *clkp, *clkp_tmp;
2550050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
2560050ea24SMichal Meloun int err = 0;
2570050ea24SMichal Meloun
2580050ea24SMichal Meloun TAILQ_FOREACH_SAFE(clkp, &sc->clk_list, next, clkp_tmp) {
2590050ea24SMichal Meloun err = clk_disable(clkp->clk);
2600050ea24SMichal Meloun
2610050ea24SMichal Meloun if (err) {
2620050ea24SMichal Meloun DPRINTF(sc->dev, "clk_enable %s failed %d\n",
2630050ea24SMichal Meloun clk_get_name(clkp->clk), err);
2640050ea24SMichal Meloun break;
2650050ea24SMichal Meloun }
2660050ea24SMichal Meloun }
2670050ea24SMichal Meloun return (err);
2680050ea24SMichal Meloun }
2690050ea24SMichal Meloun
2700050ea24SMichal Meloun static int
parse_regfields(struct ti_sysc_softc * sc)2710050ea24SMichal Meloun parse_regfields(struct ti_sysc_softc *sc) {
2720050ea24SMichal Meloun phandle_t node;
2730050ea24SMichal Meloun uint32_t parent_address_cells;
2740050ea24SMichal Meloun uint32_t parent_size_cells;
2750050ea24SMichal Meloun cell_t *reg;
2760050ea24SMichal Meloun ssize_t nreg;
2770050ea24SMichal Meloun int err, k, reg_i, prop_idx;
2780050ea24SMichal Meloun uint32_t idx;
2790050ea24SMichal Meloun
2800050ea24SMichal Meloun node = ofw_bus_get_node(sc->dev);
2810050ea24SMichal Meloun
2820050ea24SMichal Meloun /* Get parents address and size properties */
2830050ea24SMichal Meloun err = OF_searchencprop(OF_parent(node), "#address-cells",
2840050ea24SMichal Meloun &parent_address_cells, sizeof(parent_address_cells));
2850050ea24SMichal Meloun if (err == -1)
2860050ea24SMichal Meloun return (ENXIO);
2870050ea24SMichal Meloun if (!(parent_address_cells == 1 || parent_address_cells == 2)) {
2880050ea24SMichal Meloun DPRINTF(sc->dev, "Expect parent #address-cells=[1||2]\n");
2890050ea24SMichal Meloun return (ENXIO);
2900050ea24SMichal Meloun }
2910050ea24SMichal Meloun
2920050ea24SMichal Meloun err = OF_searchencprop(OF_parent(node), "#size-cells",
2930050ea24SMichal Meloun &parent_size_cells, sizeof(parent_size_cells));
2940050ea24SMichal Meloun if (err == -1)
2950050ea24SMichal Meloun return (ENXIO);
2960050ea24SMichal Meloun
2970050ea24SMichal Meloun if (!(parent_size_cells == 1 || parent_size_cells == 2)) {
2980050ea24SMichal Meloun DPRINTF(sc->dev, "Expect parent #size-cells = [1||2]\n");
2990050ea24SMichal Meloun return (ENXIO);
3000050ea24SMichal Meloun }
3010050ea24SMichal Meloun
3020050ea24SMichal Meloun /* Grab the content of reg properties */
3030050ea24SMichal Meloun nreg = OF_getproplen(node, "reg");
304d43bf55fSKonrad Sewiłło-Jopek if (nreg <= 0)
305d43bf55fSKonrad Sewiłło-Jopek return (ENXIO);
306d43bf55fSKonrad Sewiłło-Jopek
3070050ea24SMichal Meloun reg = malloc(nreg, M_DEVBUF, M_WAITOK);
3080050ea24SMichal Meloun OF_getencprop(node, "reg", reg, nreg);
3090050ea24SMichal Meloun
3100050ea24SMichal Meloun /* Make sure address & size are 0 */
3110050ea24SMichal Meloun for (idx = 0; idx < REG_MAX; idx++) {
3120050ea24SMichal Meloun sc->reg[idx].address = 0;
3130050ea24SMichal Meloun sc->reg[idx].size = 0;
3140050ea24SMichal Meloun }
3150050ea24SMichal Meloun
3160050ea24SMichal Meloun /* Loop through reg-names and figure out which reg-name corresponds to
3170050ea24SMichal Meloun * index populate the values into the reg array.
3180050ea24SMichal Meloun */
3190050ea24SMichal Meloun for (idx = 0, reg_i = 0; idx < REG_MAX && reg_i < nreg; idx++) {
3200050ea24SMichal Meloun err = ofw_bus_find_string_index(node, "reg-names",
3210050ea24SMichal Meloun reg_names[idx], &prop_idx);
3220050ea24SMichal Meloun if (err != 0)
3230050ea24SMichal Meloun continue;
3240050ea24SMichal Meloun
3250050ea24SMichal Meloun for (k = 0; k < parent_address_cells; k++) {
3260050ea24SMichal Meloun sc->reg[prop_idx].address <<= 32;
3270050ea24SMichal Meloun sc->reg[prop_idx].address |= reg[reg_i++];
3280050ea24SMichal Meloun }
3290050ea24SMichal Meloun
3300050ea24SMichal Meloun for (k = 0; k < parent_size_cells; k++) {
3310050ea24SMichal Meloun sc->reg[prop_idx].size <<= 32;
3320050ea24SMichal Meloun sc->reg[prop_idx].size |= reg[reg_i++];
3330050ea24SMichal Meloun }
3340050ea24SMichal Meloun
3350050ea24SMichal Meloun if (sc->sc.nranges == 0)
3360050ea24SMichal Meloun sc->offset_reg[prop_idx] = sc->reg[prop_idx].address;
3370050ea24SMichal Meloun else
3380050ea24SMichal Meloun sc->offset_reg[prop_idx] = sc->reg[prop_idx].address -
3390050ea24SMichal Meloun sc->sc.ranges[REG_REV].host;
3400050ea24SMichal Meloun
34149bf65beSGordon Bergling DPRINTF(sc->dev, "reg[%s] address %#jx size %#jx\n",
3420050ea24SMichal Meloun reg_names[idx],
3430050ea24SMichal Meloun sc->reg[prop_idx].address,
3440050ea24SMichal Meloun sc->reg[prop_idx].size);
3450050ea24SMichal Meloun }
3460050ea24SMichal Meloun free(reg, M_DEVBUF);
3470050ea24SMichal Meloun return (0);
3480050ea24SMichal Meloun }
3490050ea24SMichal Meloun
3500050ea24SMichal Meloun static void
parse_idle(struct ti_sysc_softc * sc,const char * name,uint32_t * idle)3510050ea24SMichal Meloun parse_idle(struct ti_sysc_softc *sc, const char *name, uint32_t *idle) {
3520050ea24SMichal Meloun phandle_t node;
3530050ea24SMichal Meloun cell_t value[SYSC_IDLE_MAX];
3540050ea24SMichal Meloun int len, no, i;
3550050ea24SMichal Meloun
3560050ea24SMichal Meloun node = ofw_bus_get_node(sc->dev);
3570050ea24SMichal Meloun
3580050ea24SMichal Meloun if (!OF_hasprop(node, name)) {
3590050ea24SMichal Meloun return;
3600050ea24SMichal Meloun }
3610050ea24SMichal Meloun
3620050ea24SMichal Meloun len = OF_getproplen(node, name);
3630050ea24SMichal Meloun no = len / sizeof(cell_t);
3640050ea24SMichal Meloun if (no >= SYSC_IDLE_MAX) {
3650050ea24SMichal Meloun DPRINTF(sc->dev, "Limit %s\n", name);
3660050ea24SMichal Meloun no = SYSC_IDLE_MAX-1;
3670050ea24SMichal Meloun len = no * sizeof(cell_t);
3680050ea24SMichal Meloun }
3690050ea24SMichal Meloun
3700050ea24SMichal Meloun OF_getencprop(node, name, value, len);
3710050ea24SMichal Meloun for (i = 0; i < no; i++) {
3720050ea24SMichal Meloun idle[i] = value[i];
3730050ea24SMichal Meloun #if DEBUG_SYSC
3740050ea24SMichal Meloun DPRINTF(sc->dev, "%s[%d] = %d ",
3750050ea24SMichal Meloun name, i, value[i]);
3760050ea24SMichal Meloun switch(value[i]) {
3770050ea24SMichal Meloun case SYSC_IDLE_FORCE:
3780050ea24SMichal Meloun DPRINTF(sc->dev, "SYSC_IDLE_FORCE\n");
3790050ea24SMichal Meloun break;
3800050ea24SMichal Meloun case SYSC_IDLE_NO:
3810050ea24SMichal Meloun DPRINTF(sc->dev, "SYSC_IDLE_NO\n");
3820050ea24SMichal Meloun break;
3830050ea24SMichal Meloun case SYSC_IDLE_SMART:
3840050ea24SMichal Meloun DPRINTF(sc->dev, "SYSC_IDLE_SMART\n");
3850050ea24SMichal Meloun break;
3860050ea24SMichal Meloun case SYSC_IDLE_SMART_WKUP:
3870050ea24SMichal Meloun DPRINTF(sc->dev, "SYSC_IDLE_SMART_WKUP\n");
3880050ea24SMichal Meloun break;
3890050ea24SMichal Meloun }
3900050ea24SMichal Meloun #endif
3910050ea24SMichal Meloun }
3920050ea24SMichal Meloun for ( ; i < SYSC_IDLE_MAX; i++)
3930050ea24SMichal Meloun idle[i] = -1;
3940050ea24SMichal Meloun }
3950050ea24SMichal Meloun
3960050ea24SMichal Meloun static int
ti_sysc_attach_clocks(struct ti_sysc_softc * sc)3970050ea24SMichal Meloun ti_sysc_attach_clocks(struct ti_sysc_softc *sc) {
3980050ea24SMichal Meloun clk_t *clk;
3990050ea24SMichal Meloun struct clk_list *clkp;
4000050ea24SMichal Meloun int index, err;
4010050ea24SMichal Meloun
4020050ea24SMichal Meloun clk = malloc(sc->num_clocks*sizeof(clk_t), M_DEVBUF, M_WAITOK | M_ZERO);
4030050ea24SMichal Meloun
4040050ea24SMichal Meloun /* Check if all clocks can be found */
4050050ea24SMichal Meloun for (index = 0; index < sc->num_clocks; index++) {
4060050ea24SMichal Meloun err = clk_get_by_ofw_index(sc->dev, 0, index, &clk[index]);
4070050ea24SMichal Meloun
4080050ea24SMichal Meloun if (err != 0) {
4090050ea24SMichal Meloun free(clk, M_DEVBUF);
4100050ea24SMichal Meloun return (1);
4110050ea24SMichal Meloun }
4120050ea24SMichal Meloun }
4130050ea24SMichal Meloun
4140050ea24SMichal Meloun /* All clocks are found, add to list */
4150050ea24SMichal Meloun for (index = 0; index < sc->num_clocks; index++) {
4160050ea24SMichal Meloun clkp = malloc(sizeof(*clkp), M_DEVBUF, M_WAITOK | M_ZERO);
4170050ea24SMichal Meloun clkp->clk = clk[index];
4180050ea24SMichal Meloun TAILQ_INSERT_TAIL(&sc->clk_list, clkp, next);
4190050ea24SMichal Meloun }
4200050ea24SMichal Meloun
4210050ea24SMichal Meloun /* Release the clk array */
4220050ea24SMichal Meloun free(clk, M_DEVBUF);
4230050ea24SMichal Meloun return (0);
4240050ea24SMichal Meloun }
4250050ea24SMichal Meloun
4260050ea24SMichal Meloun static int
ti_sysc_simplebus_attach_child(device_t dev)4270050ea24SMichal Meloun ti_sysc_simplebus_attach_child(device_t dev) {
4280050ea24SMichal Meloun device_t cdev;
4290050ea24SMichal Meloun phandle_t node, child;
4300050ea24SMichal Meloun struct ti_sysc_softc *sc = device_get_softc(dev);
4310050ea24SMichal Meloun
4320050ea24SMichal Meloun node = ofw_bus_get_node(sc->dev);
4330050ea24SMichal Meloun
4340050ea24SMichal Meloun for (child = OF_child(node); child > 0; child = OF_peer(child)) {
4350050ea24SMichal Meloun cdev = simplebus_add_device(sc->dev, child, 0, NULL, -1, NULL);
4360050ea24SMichal Meloun if (cdev != NULL)
4370050ea24SMichal Meloun device_probe_and_attach(cdev);
4380050ea24SMichal Meloun }
4390050ea24SMichal Meloun return (0);
4400050ea24SMichal Meloun }
4410050ea24SMichal Meloun
4420050ea24SMichal Meloun /* Device interface */
443b9305a86SEmmanuel Vadot static int
ti_sysc_probe(device_t dev)444b9305a86SEmmanuel Vadot ti_sysc_probe(device_t dev)
445b9305a86SEmmanuel Vadot {
446b9305a86SEmmanuel Vadot if (!ofw_bus_status_okay(dev))
447b9305a86SEmmanuel Vadot return (ENXIO);
448b9305a86SEmmanuel Vadot
449b9305a86SEmmanuel Vadot if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0)
450b9305a86SEmmanuel Vadot return (ENXIO);
451b9305a86SEmmanuel Vadot
452b9305a86SEmmanuel Vadot device_set_desc(dev, "TI SYSC Interconnect");
4533dffab60SIan Lepore
454b9305a86SEmmanuel Vadot return (BUS_PROBE_DEFAULT);
455b9305a86SEmmanuel Vadot }
456b9305a86SEmmanuel Vadot
457b9305a86SEmmanuel Vadot static int
ti_sysc_attach(device_t dev)458b9305a86SEmmanuel Vadot ti_sysc_attach(device_t dev)
459b9305a86SEmmanuel Vadot {
460b9305a86SEmmanuel Vadot struct ti_sysc_softc *sc;
4610050ea24SMichal Meloun phandle_t node;
4620050ea24SMichal Meloun int err;
4630050ea24SMichal Meloun cell_t value;
464b9305a86SEmmanuel Vadot
465b9305a86SEmmanuel Vadot sc = device_get_softc(dev);
466b9305a86SEmmanuel Vadot sc->dev = dev;
4670050ea24SMichal Meloun sc->device_type = ofw_bus_search_compatible(dev, compat_data)->ocd_data;
468b9305a86SEmmanuel Vadot
4690050ea24SMichal Meloun node = ofw_bus_get_node(sc->dev);
4700050ea24SMichal Meloun /* ranges - use simplebus */
4710050ea24SMichal Meloun simplebus_init(sc->dev, node);
472b9305a86SEmmanuel Vadot if (simplebus_fill_ranges(node, &sc->sc) < 0) {
4730050ea24SMichal Meloun DPRINTF(sc->dev, "could not get ranges\n");
474b9305a86SEmmanuel Vadot return (ENXIO);
475b9305a86SEmmanuel Vadot }
476b9305a86SEmmanuel Vadot
4770050ea24SMichal Meloun if (sc->sc.nranges == 0) {
4780050ea24SMichal Meloun DPRINTF(sc->dev, "nranges == 0\n");
4790050ea24SMichal Meloun return (ENXIO);
480b9305a86SEmmanuel Vadot }
481b9305a86SEmmanuel Vadot
4820050ea24SMichal Meloun /* Required field reg & reg-names - assume at least "rev" exists */
4830050ea24SMichal Meloun err = parse_regfields(sc);
4840050ea24SMichal Meloun if (err) {
4850050ea24SMichal Meloun DPRINTF(sc->dev, "parse_regfields failed %d\n", err);
4860050ea24SMichal Meloun return (ENXIO);
4870050ea24SMichal Meloun }
4880050ea24SMichal Meloun
4890050ea24SMichal Meloun /* Optional */
4900050ea24SMichal Meloun if (OF_hasprop(node, "ti,sysc-mask")) {
4910050ea24SMichal Meloun OF_getencprop(node, "ti,sysc-mask", &value, sizeof(cell_t));
4920050ea24SMichal Meloun sc->ti_sysc_mask = value;
4930050ea24SMichal Meloun }
4940050ea24SMichal Meloun if (OF_hasprop(node, "ti,syss-mask")) {
4950050ea24SMichal Meloun OF_getencprop(node, "ti,syss-mask", &value, sizeof(cell_t));
4960050ea24SMichal Meloun sc->ti_syss_mask = value;
4970050ea24SMichal Meloun }
4980050ea24SMichal Meloun if (OF_hasprop(node, "ti,sysc-delay-us")) {
4990050ea24SMichal Meloun OF_getencprop(node, "ti,sysc-delay-us", &value, sizeof(cell_t));
5000050ea24SMichal Meloun sc->ti_sysc_delay_us = value;
5010050ea24SMichal Meloun }
5020050ea24SMichal Meloun
5030050ea24SMichal Meloun DPRINTF(sc->dev, "sysc_mask %x syss_mask %x delay_us %x\n",
5040050ea24SMichal Meloun sc->ti_sysc_mask, sc->ti_syss_mask, sc->ti_sysc_delay_us);
5050050ea24SMichal Meloun
5060050ea24SMichal Meloun parse_idle(sc, "ti,sysc-midle", sc->ti_sysc_midle);
5070050ea24SMichal Meloun parse_idle(sc, "ti,sysc-sidle", sc->ti_sysc_sidle);
5080050ea24SMichal Meloun
5090050ea24SMichal Meloun if (OF_hasprop(node, "ti,no-reset-on-init"))
5100050ea24SMichal Meloun sc->ti_no_reset_on_init = true;
5110050ea24SMichal Meloun else
5120050ea24SMichal Meloun sc->ti_no_reset_on_init = false;
5130050ea24SMichal Meloun
5140050ea24SMichal Meloun if (OF_hasprop(node, "ti,no-idle-on-init"))
5150050ea24SMichal Meloun sc->ti_no_idle_on_init = true;
5160050ea24SMichal Meloun else
5170050ea24SMichal Meloun sc->ti_no_idle_on_init = false;
5180050ea24SMichal Meloun
5190050ea24SMichal Meloun if (OF_hasprop(node, "ti,no-idle"))
5200050ea24SMichal Meloun sc->ti_no_idle = true;
5210050ea24SMichal Meloun else
5220050ea24SMichal Meloun sc->ti_no_idle = false;
5230050ea24SMichal Meloun
5240050ea24SMichal Meloun DPRINTF(sc->dev,
5250050ea24SMichal Meloun "no-reset-on-init %d, no-idle-on-init %d, no-idle %d\n",
5260050ea24SMichal Meloun sc->ti_no_reset_on_init,
5270050ea24SMichal Meloun sc->ti_no_idle_on_init,
5280050ea24SMichal Meloun sc->ti_no_idle);
5290050ea24SMichal Meloun
5300050ea24SMichal Meloun if (OF_hasprop(node, "clocks")) {
5310050ea24SMichal Meloun struct clock_cell_info cell_info;
5320050ea24SMichal Meloun read_clock_cells(sc->dev, &cell_info);
5330050ea24SMichal Meloun free(cell_info.clock_cells, M_DEVBUF);
5340050ea24SMichal Meloun free(cell_info.clock_cells_ncells, M_DEVBUF);
5350050ea24SMichal Meloun
5360050ea24SMichal Meloun sc->num_clocks = cell_info.num_real_clocks;
5370050ea24SMichal Meloun TAILQ_INIT(&sc->clk_list);
5380050ea24SMichal Meloun
5390050ea24SMichal Meloun err = ti_sysc_attach_clocks(sc);
5400050ea24SMichal Meloun if (err) {
5410050ea24SMichal Meloun DPRINTF(sc->dev, "Failed to attach clocks\n");
542*18250ec6SJohn Baldwin bus_attach_children(sc->dev);
543*18250ec6SJohn Baldwin return (0);
5440050ea24SMichal Meloun }
5450050ea24SMichal Meloun }
5460050ea24SMichal Meloun
5470050ea24SMichal Meloun err = ti_sysc_simplebus_attach_child(sc->dev);
5480050ea24SMichal Meloun if (err) {
5490050ea24SMichal Meloun DPRINTF(sc->dev, "ti_sysc_simplebus_attach_child %d\n",
5500050ea24SMichal Meloun err);
5510050ea24SMichal Meloun return (err);
5520050ea24SMichal Meloun }
5530050ea24SMichal Meloun
5540050ea24SMichal Meloun sc->attach_done = true;
5550050ea24SMichal Meloun
556*18250ec6SJohn Baldwin bus_attach_children(sc->dev);
557*18250ec6SJohn Baldwin return (0);
558b9305a86SEmmanuel Vadot }
559b9305a86SEmmanuel Vadot
560b9305a86SEmmanuel Vadot static int
ti_sysc_detach(device_t dev)561b9305a86SEmmanuel Vadot ti_sysc_detach(device_t dev)
562b9305a86SEmmanuel Vadot {
563b9305a86SEmmanuel Vadot return (EBUSY);
564b9305a86SEmmanuel Vadot }
565b9305a86SEmmanuel Vadot
5660050ea24SMichal Meloun /* Bus interface */
5670050ea24SMichal Meloun static void
ti_sysc_new_pass(device_t dev)5680050ea24SMichal Meloun ti_sysc_new_pass(device_t dev)
5690050ea24SMichal Meloun {
5700050ea24SMichal Meloun struct ti_sysc_softc *sc;
5710050ea24SMichal Meloun int err;
5720050ea24SMichal Meloun phandle_t node;
5730050ea24SMichal Meloun
5740050ea24SMichal Meloun sc = device_get_softc(dev);
5750050ea24SMichal Meloun
5760050ea24SMichal Meloun if (sc->attach_done) {
5770050ea24SMichal Meloun bus_generic_new_pass(sc->dev);
5780050ea24SMichal Meloun return;
5790050ea24SMichal Meloun }
5800050ea24SMichal Meloun
5810050ea24SMichal Meloun node = ofw_bus_get_node(sc->dev);
5820050ea24SMichal Meloun if (OF_hasprop(node, "clocks")) {
5830050ea24SMichal Meloun err = ti_sysc_attach_clocks(sc);
5840050ea24SMichal Meloun if (err) {
5850050ea24SMichal Meloun DPRINTF(sc->dev, "Failed to attach clocks\n");
5860050ea24SMichal Meloun return;
5870050ea24SMichal Meloun }
5880050ea24SMichal Meloun }
5890050ea24SMichal Meloun
5900050ea24SMichal Meloun err = ti_sysc_simplebus_attach_child(sc->dev);
5910050ea24SMichal Meloun if (err) {
5920050ea24SMichal Meloun DPRINTF(sc->dev,
5930050ea24SMichal Meloun "ti_sysc_simplebus_attach_child failed %d\n", err);
5940050ea24SMichal Meloun return;
5950050ea24SMichal Meloun }
5960050ea24SMichal Meloun sc->attach_done = true;
5970050ea24SMichal Meloun
598*18250ec6SJohn Baldwin bus_attach_children(sc->dev);
5990050ea24SMichal Meloun }
6000050ea24SMichal Meloun
601b9305a86SEmmanuel Vadot static device_method_t ti_sysc_methods[] = {
602b9305a86SEmmanuel Vadot /* Device interface */
603b9305a86SEmmanuel Vadot DEVMETHOD(device_probe, ti_sysc_probe),
604b9305a86SEmmanuel Vadot DEVMETHOD(device_attach, ti_sysc_attach),
605b9305a86SEmmanuel Vadot DEVMETHOD(device_detach, ti_sysc_detach),
606b9305a86SEmmanuel Vadot
6070050ea24SMichal Meloun /* Bus interface */
6080050ea24SMichal Meloun DEVMETHOD(bus_new_pass, ti_sysc_new_pass),
6090050ea24SMichal Meloun
610b9305a86SEmmanuel Vadot DEVMETHOD_END
611b9305a86SEmmanuel Vadot };
612b9305a86SEmmanuel Vadot
613b9305a86SEmmanuel Vadot DEFINE_CLASS_1(ti_sysc, ti_sysc_driver, ti_sysc_methods,
614b9305a86SEmmanuel Vadot sizeof(struct ti_sysc_softc), simplebus_driver);
615b9305a86SEmmanuel Vadot
6168537e671SJohn Baldwin EARLY_DRIVER_MODULE(ti_sysc, simplebus, ti_sysc_driver, 0, 0,
6178537e671SJohn Baldwin BUS_PASS_BUS + BUS_PASS_ORDER_FIRST);
618