1*62e8ccc3SEmmanuel Vadot /*- 2*62e8ccc3SEmmanuel Vadot * SPDX-License-Identifier: BSD-2-Clause 3*62e8ccc3SEmmanuel Vadot * 4*62e8ccc3SEmmanuel Vadot * Copyright (c) 2017 Kyle Evans <kevans@FreeBSD.org> 5*62e8ccc3SEmmanuel Vadot * 6*62e8ccc3SEmmanuel Vadot * Redistribution and use in source and binary forms, with or without 7*62e8ccc3SEmmanuel Vadot * modification, are permitted provided that the following conditions 8*62e8ccc3SEmmanuel Vadot * are met: 9*62e8ccc3SEmmanuel Vadot * 1. Redistributions of source code must retain the above copyright 10*62e8ccc3SEmmanuel Vadot * notice, this list of conditions and the following disclaimer. 11*62e8ccc3SEmmanuel Vadot * 2. Redistributions in binary form must reproduce the above copyright 12*62e8ccc3SEmmanuel Vadot * notice, this list of conditions and the following disclaimer in the 13*62e8ccc3SEmmanuel Vadot * documentation and/or other materials provided with the distribution. 14*62e8ccc3SEmmanuel Vadot * 15*62e8ccc3SEmmanuel Vadot * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 16*62e8ccc3SEmmanuel Vadot * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 17*62e8ccc3SEmmanuel Vadot * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 18*62e8ccc3SEmmanuel Vadot * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 19*62e8ccc3SEmmanuel Vadot * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 20*62e8ccc3SEmmanuel Vadot * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 21*62e8ccc3SEmmanuel Vadot * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 22*62e8ccc3SEmmanuel Vadot * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23*62e8ccc3SEmmanuel Vadot * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 24*62e8ccc3SEmmanuel Vadot * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25*62e8ccc3SEmmanuel Vadot */ 26*62e8ccc3SEmmanuel Vadot 27*62e8ccc3SEmmanuel Vadot #ifndef DEV_SYSCON_H 28*62e8ccc3SEmmanuel Vadot #define DEV_SYSCON_H 29*62e8ccc3SEmmanuel Vadot 30*62e8ccc3SEmmanuel Vadot #include "opt_platform.h" 31*62e8ccc3SEmmanuel Vadot 32*62e8ccc3SEmmanuel Vadot #include <sys/types.h> 33*62e8ccc3SEmmanuel Vadot #include <sys/kobj.h> 34*62e8ccc3SEmmanuel Vadot #ifdef FDT 35*62e8ccc3SEmmanuel Vadot #include <dev/ofw/ofw_bus.h> 36*62e8ccc3SEmmanuel Vadot #endif 37*62e8ccc3SEmmanuel Vadot 38*62e8ccc3SEmmanuel Vadot struct syscon { 39*62e8ccc3SEmmanuel Vadot KOBJ_FIELDS; 40*62e8ccc3SEmmanuel Vadot 41*62e8ccc3SEmmanuel Vadot TAILQ_ENTRY(syscon) syscon_link; /* Global list entry */ 42*62e8ccc3SEmmanuel Vadot 43*62e8ccc3SEmmanuel Vadot device_t pdev; /* provider device */ 44*62e8ccc3SEmmanuel Vadot #ifdef FDT 45*62e8ccc3SEmmanuel Vadot phandle_t ofw_node; /* OFW node for syscon */ 46*62e8ccc3SEmmanuel Vadot #endif 47*62e8ccc3SEmmanuel Vadot void *softc; /* provider softc */ 48*62e8ccc3SEmmanuel Vadot }; 49*62e8ccc3SEmmanuel Vadot 50*62e8ccc3SEmmanuel Vadot /* 51*62e8ccc3SEmmanuel Vadot * Shorthands for constructing method tables. 52*62e8ccc3SEmmanuel Vadot */ 53*62e8ccc3SEmmanuel Vadot #define SYSCONMETHOD KOBJMETHOD 54*62e8ccc3SEmmanuel Vadot #define SYSCONMETHOD_END KOBJMETHOD_END 55*62e8ccc3SEmmanuel Vadot #define syscon_method_t kobj_method_t 56*62e8ccc3SEmmanuel Vadot #define syscon_class_t kobj_class_t 57*62e8ccc3SEmmanuel Vadot DECLARE_CLASS(syscon_class); 58*62e8ccc3SEmmanuel Vadot 59*62e8ccc3SEmmanuel Vadot void *syscon_get_softc(struct syscon *syscon); 60*62e8ccc3SEmmanuel Vadot 61*62e8ccc3SEmmanuel Vadot /* 62*62e8ccc3SEmmanuel Vadot * Provider interface 63*62e8ccc3SEmmanuel Vadot */ 64*62e8ccc3SEmmanuel Vadot struct syscon *syscon_create(device_t pdev, syscon_class_t syscon_class); 65*62e8ccc3SEmmanuel Vadot struct syscon *syscon_register(struct syscon *syscon); 66*62e8ccc3SEmmanuel Vadot int syscon_unregister(struct syscon *syscon); 67*62e8ccc3SEmmanuel Vadot 68*62e8ccc3SEmmanuel Vadot #ifdef FDT 69*62e8ccc3SEmmanuel Vadot struct syscon *syscon_create_ofw_node(device_t pdev, 70*62e8ccc3SEmmanuel Vadot syscon_class_t syscon_class, phandle_t node); 71*62e8ccc3SEmmanuel Vadot phandle_t syscon_get_ofw_node(struct syscon *syscon); 72*62e8ccc3SEmmanuel Vadot int syscon_get_by_ofw_property(device_t consumer, phandle_t node, char *name, 73*62e8ccc3SEmmanuel Vadot struct syscon **syscon); 74*62e8ccc3SEmmanuel Vadot int syscon_get_by_ofw_node(device_t cdev, phandle_t node, struct syscon **syscon); 75*62e8ccc3SEmmanuel Vadot #endif 76*62e8ccc3SEmmanuel Vadot 77*62e8ccc3SEmmanuel Vadot #endif /* DEV_SYSCON_H */ 78