Lines Matching +full:syscon +full:- +full:dev
1 /*-
2 * SPDX-License-Identifier: BSD-2-Clause
29 * Allwinner syscon driver
40 #include <dev/ofw/openfirm.h>
41 #include <dev/ofw/ofw_bus.h>
42 #include <dev/ofw/ofw_bus_subr.h>
44 #include <dev/syscon/syscon.h>
45 #include <dev/syscon/syscon_generic.h>
48 {"allwinner,sun50i-a64-system-controller", 1},
49 {"allwinner,sun50i-a64-system-control", 1},
50 {"allwinner,sun8i-a83t-system-controller", 1},
51 {"allwinner,sun8i-h3-system-controller", 1},
52 {"allwinner,sun8i-h3-system-control", 1},
53 {"allwinner,sun50i-h5-system-control", 1},
54 {"allwinner,sun20i-d1-system-control", 1},
59 aw_syscon_probe(device_t dev) in aw_syscon_probe() argument
62 if (!ofw_bus_status_okay(dev)) in aw_syscon_probe()
64 if (ofw_bus_search_compatible(dev, compat_data)->ocd_data == 0) in aw_syscon_probe()
67 device_set_desc(dev, "Allwinner syscon"); in aw_syscon_probe()