Home | History | Annotate | Line # | Download | only in fdt
fdtvar.h revision 1.65
      1  1.65  jmcneill /* $NetBSD: fdtvar.h,v 1.65 2021/01/15 00:38:23 jmcneill Exp $ */
      2   1.1  jmcneill 
      3   1.1  jmcneill /*-
      4   1.1  jmcneill  * Copyright (c) 2015 Jared D. McNeill <jmcneill (at) invisible.ca>
      5   1.1  jmcneill  * All rights reserved.
      6   1.1  jmcneill  *
      7   1.1  jmcneill  * Redistribution and use in source and binary forms, with or without
      8   1.1  jmcneill  * modification, are permitted provided that the following conditions
      9   1.1  jmcneill  * are met:
     10   1.1  jmcneill  * 1. Redistributions of source code must retain the above copyright
     11   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer.
     12   1.1  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     14   1.1  jmcneill  *    documentation and/or other materials provided with the distribution.
     15   1.1  jmcneill  *
     16   1.1  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     17   1.1  jmcneill  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     18   1.1  jmcneill  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     19   1.1  jmcneill  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     20   1.1  jmcneill  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     21   1.1  jmcneill  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     22   1.1  jmcneill  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     23   1.1  jmcneill  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     24   1.1  jmcneill  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     25   1.1  jmcneill  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     26   1.1  jmcneill  * SUCH DAMAGE.
     27   1.1  jmcneill  */
     28   1.1  jmcneill 
     29  1.62     skrll #ifndef _DEV_FDT_FDTVAR_H_
     30  1.62     skrll #define _DEV_FDT_FDTVAR_H_
     31   1.1  jmcneill 
     32   1.1  jmcneill #include <sys/types.h>
     33   1.1  jmcneill #include <sys/bus.h>
     34  1.46   thorpej #include <sys/gpio.h>
     35  1.19  jmcneill #include <sys/termios.h>
     36   1.1  jmcneill 
     37   1.1  jmcneill #include <dev/i2c/i2cvar.h>
     38  1.30  jmcneill #include <dev/pwm/pwmvar.h>
     39   1.3  jmcneill #include <dev/clk/clk.h>
     40  1.32  jmcneill 
     41  1.42  jakllsch #ifdef _KERNEL_OPT
     42  1.32  jmcneill #include "audio.h"
     43  1.42  jakllsch #endif
     44  1.32  jmcneill #if NAUDIO > 0
     45  1.51     isaki #include <dev/audio/audio_dai.h>
     46  1.32  jmcneill #else
     47  1.32  jmcneill typedef void *audio_dai_tag_t;
     48  1.32  jmcneill #endif
     49   1.1  jmcneill 
     50  1.11  jmcneill #include <dev/clock_subr.h>
     51  1.11  jmcneill 
     52   1.1  jmcneill #include <dev/ofw/openfirm.h>
     53   1.1  jmcneill 
     54   1.1  jmcneill struct fdt_attach_args {
     55   1.1  jmcneill 	const char *faa_name;
     56   1.1  jmcneill 	bus_space_tag_t faa_bst;
     57   1.1  jmcneill 	bus_dma_tag_t faa_dmat;
     58   1.1  jmcneill 	int faa_phandle;
     59  1.13  jmcneill 	int faa_quiet;
     60   1.1  jmcneill };
     61   1.1  jmcneill 
     62   1.1  jmcneill /* flags for fdtbus_intr_establish */
     63   1.1  jmcneill #define FDT_INTR_MPSAFE	__BIT(0)
     64   1.1  jmcneill 
     65  1.47   thorpej /* Interrupt trigger types defined by the FDT "interrupts" bindings. */
     66  1.47   thorpej #define	FDT_INTR_TYPE_POS_EDGE		__BIT(0)
     67  1.47   thorpej #define	FDT_INTR_TYPE_NEG_EDGE		__BIT(1)
     68  1.47   thorpej #define	FDT_INTR_TYPE_DOUBLE_EDGE	(FDT_INTR_TYPE_POS_EDGE | \
     69  1.47   thorpej 					 FDT_INTR_TYPE_NEG_EDGE)
     70  1.47   thorpej #define	FDT_INTR_TYPE_HIGH_LEVEL	__BIT(2)
     71  1.47   thorpej #define	FDT_INTR_TYPE_LOW_LEVEL		__BIT(3)
     72  1.47   thorpej 
     73   1.1  jmcneill struct fdtbus_interrupt_controller_func {
     74   1.7     marty 	void *	(*establish)(device_t, u_int *, int, int,
     75  1.65  jmcneill 			     int (*)(void *), void *, const char *);
     76   1.1  jmcneill 	void	(*disestablish)(device_t, void *);
     77   1.7     marty 	bool	(*intrstr)(device_t, u_int *, char *, size_t);
     78  1.59   thorpej 	void	(*mask)(device_t, void *);
     79  1.59   thorpej 	void	(*unmask)(device_t, void *);
     80   1.1  jmcneill };
     81   1.1  jmcneill 
     82  1.53       tnn struct fdtbus_spi_controller_func {
     83  1.53       tnn 	struct spi_controller *	(*get_controller)(device_t);
     84  1.53       tnn };
     85  1.53       tnn 
     86   1.1  jmcneill struct fdtbus_gpio_controller;
     87   1.1  jmcneill 
     88   1.1  jmcneill struct fdtbus_gpio_pin {
     89   1.1  jmcneill 	struct fdtbus_gpio_controller *gp_gc;
     90   1.1  jmcneill 	void *gp_priv;
     91   1.1  jmcneill };
     92   1.1  jmcneill 
     93   1.1  jmcneill struct fdtbus_gpio_controller_func {
     94   1.1  jmcneill 	void *	(*acquire)(device_t, const void *, size_t, int);
     95   1.1  jmcneill 	void	(*release)(device_t, void *);
     96   1.4  jmcneill 	int	(*read)(device_t, void *, bool);
     97   1.4  jmcneill 	void	(*write)(device_t, void *, int, bool);
     98   1.1  jmcneill };
     99   1.1  jmcneill 
    100   1.5     marty struct fdtbus_pinctrl_controller;
    101   1.5     marty 
    102   1.5     marty struct fdtbus_pinctrl_pin {
    103   1.5     marty 	struct fdtbus_pinctrl_controller *pp_pc;
    104   1.5     marty 	void *pp_priv;
    105   1.5     marty };
    106   1.5     marty 
    107   1.5     marty struct fdtbus_pinctrl_controller_func {
    108  1.23  jmcneill 	int (*set_config)(device_t, const void *, size_t);
    109   1.5     marty };
    110   1.5     marty 
    111   1.1  jmcneill struct fdtbus_regulator_controller;
    112   1.1  jmcneill 
    113   1.1  jmcneill struct fdtbus_regulator {
    114   1.1  jmcneill 	struct fdtbus_regulator_controller *reg_rc;
    115   1.1  jmcneill };
    116   1.1  jmcneill 
    117   1.1  jmcneill struct fdtbus_regulator_controller_func {
    118   1.1  jmcneill 	int	(*acquire)(device_t);
    119   1.1  jmcneill 	void	(*release)(device_t);
    120   1.1  jmcneill 	int	(*enable)(device_t, bool);
    121  1.12  jmcneill 	int	(*set_voltage)(device_t, u_int, u_int);
    122  1.12  jmcneill 	int	(*get_voltage)(device_t, u_int *);
    123   1.1  jmcneill };
    124   1.1  jmcneill 
    125   1.3  jmcneill struct fdtbus_clock_controller_func {
    126  1.40   aymeric 	struct clk *	(*decode)(device_t, int, const void *, size_t);
    127   1.3  jmcneill };
    128   1.3  jmcneill 
    129   1.3  jmcneill struct fdtbus_reset_controller;
    130   1.3  jmcneill 
    131   1.3  jmcneill struct fdtbus_reset {
    132   1.3  jmcneill 	struct fdtbus_reset_controller *rst_rc;
    133   1.3  jmcneill 	void *rst_priv;
    134   1.3  jmcneill };
    135   1.3  jmcneill 
    136   1.3  jmcneill struct fdtbus_reset_controller_func {
    137   1.3  jmcneill 	void *	(*acquire)(device_t, const void *, size_t);
    138   1.3  jmcneill 	void	(*release)(device_t, void *);
    139   1.3  jmcneill 	int	(*reset_assert)(device_t, void *);
    140   1.3  jmcneill 	int	(*reset_deassert)(device_t, void *);
    141   1.3  jmcneill };
    142   1.3  jmcneill 
    143  1.31  jmcneill struct fdtbus_dai_controller_func {
    144  1.31  jmcneill 	audio_dai_tag_t (*get_tag)(device_t, const void *, size_t);
    145  1.31  jmcneill };
    146  1.31  jmcneill 
    147  1.14  jmcneill struct fdtbus_dma_controller;
    148  1.14  jmcneill 
    149  1.14  jmcneill struct fdtbus_dma {
    150  1.14  jmcneill 	struct fdtbus_dma_controller *dma_dc;
    151  1.14  jmcneill 	void *dma_priv;
    152  1.14  jmcneill };
    153  1.14  jmcneill 
    154  1.14  jmcneill enum fdtbus_dma_dir {
    155  1.14  jmcneill 	FDT_DMA_READ,		/* device -> memory */
    156  1.14  jmcneill 	FDT_DMA_WRITE		/* memory -> device */
    157  1.14  jmcneill };
    158  1.14  jmcneill 
    159  1.14  jmcneill struct fdtbus_dma_opt {
    160  1.14  jmcneill 	int opt_bus_width;		/* Bus width */
    161  1.14  jmcneill 	int opt_burst_len;		/* Burst length */
    162  1.14  jmcneill 	int opt_swap;			/* Enable data swapping */
    163  1.14  jmcneill 	int opt_dblbuf;			/* Enable double buffering */
    164  1.14  jmcneill 	int opt_wrap_len;		/* Address wrap-around window */
    165  1.14  jmcneill };
    166  1.14  jmcneill 
    167  1.14  jmcneill struct fdtbus_dma_req {
    168  1.14  jmcneill 	bus_dma_segment_t *dreq_segs;	/* Memory */
    169  1.14  jmcneill 	int dreq_nsegs;
    170  1.14  jmcneill 
    171  1.14  jmcneill 	bus_addr_t dreq_dev_phys;	/* Device */
    172  1.14  jmcneill 	int dreq_sel;			/* Device selector */
    173  1.14  jmcneill 
    174  1.14  jmcneill 	enum fdtbus_dma_dir dreq_dir;	/* Transfer direction */
    175  1.14  jmcneill 
    176  1.14  jmcneill 	int dreq_block_irq;		/* Enable IRQ at end of block */
    177  1.14  jmcneill 	int dreq_block_multi;		/* Enable multiple block transfers */
    178  1.14  jmcneill 	int dreq_flow;			/* Enable flow control */
    179  1.14  jmcneill 
    180  1.14  jmcneill 	struct fdtbus_dma_opt dreq_mem_opt;	/* Memory options */
    181  1.14  jmcneill 	struct fdtbus_dma_opt dreq_dev_opt;	/* Device options */
    182  1.14  jmcneill };
    183  1.14  jmcneill 
    184  1.14  jmcneill struct fdtbus_dma_controller_func {
    185  1.14  jmcneill 	void *	(*acquire)(device_t, const void *, size_t,
    186  1.14  jmcneill 			   void (*)(void *), void *);
    187  1.14  jmcneill 	void	(*release)(device_t, void *);
    188  1.14  jmcneill 	int	(*transfer)(device_t, void *, struct fdtbus_dma_req *);
    189  1.14  jmcneill 	void	(*halt)(device_t, void *);
    190  1.14  jmcneill };
    191  1.14  jmcneill 
    192  1.18  jmcneill struct fdtbus_power_controller;
    193  1.18  jmcneill 
    194  1.18  jmcneill struct fdtbus_power_controller_func {
    195  1.18  jmcneill 	void 	(*reset)(device_t);
    196  1.18  jmcneill 	void	(*poweroff)(device_t);
    197  1.18  jmcneill };
    198  1.18  jmcneill 
    199  1.21  jmcneill struct fdtbus_phy_controller;
    200  1.21  jmcneill 
    201  1.21  jmcneill struct fdtbus_phy {
    202  1.21  jmcneill 	struct fdtbus_phy_controller *phy_pc;
    203  1.21  jmcneill 	void *phy_priv;
    204  1.21  jmcneill };
    205  1.21  jmcneill 
    206  1.21  jmcneill struct fdtbus_phy_controller_func {
    207  1.21  jmcneill 	void *	(*acquire)(device_t, const void *, size_t);
    208  1.21  jmcneill 	void	(*release)(device_t, void *);
    209  1.21  jmcneill 	int	(*enable)(device_t, void *, bool);
    210  1.21  jmcneill };
    211  1.21  jmcneill 
    212  1.30  jmcneill struct fdtbus_pwm_controller_func {
    213  1.30  jmcneill 	pwm_tag_t (*get_tag)(device_t, const void *, size_t);
    214  1.30  jmcneill };
    215  1.30  jmcneill 
    216  1.27  jmcneill struct fdtbus_mmc_pwrseq;
    217  1.27  jmcneill 
    218  1.27  jmcneill struct fdtbus_mmc_pwrseq_func {
    219  1.27  jmcneill 	void	(*pre_power_on)(device_t);
    220  1.27  jmcneill 	void	(*post_power_on)(device_t);
    221  1.27  jmcneill 	void	(*power_off)(device_t);
    222  1.27  jmcneill 	void	(*reset)(device_t);
    223  1.27  jmcneill };
    224  1.27  jmcneill 
    225  1.35  jmcneill struct syscon;
    226  1.35  jmcneill 
    227  1.19  jmcneill struct fdt_console {
    228  1.19  jmcneill 	int	(*match)(int);
    229  1.20  jmcneill 	void	(*consinit)(struct fdt_attach_args *, u_int);
    230  1.19  jmcneill };
    231  1.19  jmcneill 
    232  1.19  jmcneill struct fdt_console_info {
    233  1.19  jmcneill 	const struct fdt_console *ops;
    234  1.19  jmcneill };
    235  1.19  jmcneill 
    236  1.52   hkenken struct fdt_phandle_data {
    237  1.52   hkenken 	int phandle;
    238  1.52   hkenken 	int count;
    239  1.52   hkenken 	const u_int *values;
    240  1.52   hkenken };
    241  1.52   hkenken 
    242  1.19  jmcneill #define	_FDT_CONSOLE_REGISTER(name)	\
    243  1.19  jmcneill 	__link_set_add_rodata(fdt_consoles, __CONCAT(name,_consinfo));
    244  1.19  jmcneill 
    245  1.19  jmcneill #define	FDT_CONSOLE(_name, _ops)					\
    246  1.19  jmcneill static const struct fdt_console_info __CONCAT(_name,_consinfo) = {	\
    247  1.19  jmcneill 	.ops = (_ops)							\
    248  1.19  jmcneill };									\
    249  1.19  jmcneill _FDT_CONSOLE_REGISTER(_name)
    250  1.19  jmcneill 
    251  1.55  jmcneill struct fdt_opp_info {
    252  1.55  jmcneill 	const char *	opp_compat;
    253  1.55  jmcneill 	bool		(*opp_supported)(const int, const int);
    254  1.55  jmcneill };
    255  1.55  jmcneill 
    256  1.55  jmcneill #define	_FDT_OPP_REGISTER(name)		\
    257  1.55  jmcneill 	__link_set_add_rodata(fdt_opps, __CONCAT(name,_oppinfo));
    258  1.55  jmcneill 
    259  1.55  jmcneill #define	FDT_OPP(_name, _compat, _suppfn)				\
    260  1.55  jmcneill static const struct fdt_opp_info __CONCAT(_name,_oppinfo) = {		\
    261  1.55  jmcneill 	.opp_compat = (_compat),					\
    262  1.55  jmcneill 	.opp_supported = (_suppfn)					\
    263  1.55  jmcneill };									\
    264  1.55  jmcneill _FDT_OPP_REGISTER(_name)
    265  1.55  jmcneill 
    266  1.19  jmcneill TAILQ_HEAD(fdt_conslist, fdt_console_info);
    267  1.19  jmcneill 
    268  1.60  jmcneill struct fdt_dma_range {
    269  1.60  jmcneill 	paddr_t		dr_sysbase;
    270  1.60  jmcneill 	bus_addr_t	dr_busbase;
    271  1.60  jmcneill 	bus_size_t	dr_len;
    272  1.60  jmcneill };
    273  1.60  jmcneill 
    274   1.2  jmcneill int		fdtbus_register_interrupt_controller(device_t, int,
    275   1.2  jmcneill 		    const struct fdtbus_interrupt_controller_func *);
    276  1.64   thorpej int		fdtbus_register_i2c_controller(i2c_tag_t, int);
    277  1.53       tnn int		fdtbus_register_spi_controller(device_t, int,
    278  1.53       tnn 		    const struct fdtbus_spi_controller_func *);
    279   1.2  jmcneill int		fdtbus_register_gpio_controller(device_t, int,
    280   1.2  jmcneill 		    const struct fdtbus_gpio_controller_func *);
    281  1.23  jmcneill int		fdtbus_register_pinctrl_config(device_t, int,
    282   1.5     marty 		    const struct fdtbus_pinctrl_controller_func *);
    283   1.2  jmcneill int		fdtbus_register_regulator_controller(device_t, int,
    284   1.2  jmcneill 		    const struct fdtbus_regulator_controller_func *);
    285   1.3  jmcneill int		fdtbus_register_clock_controller(device_t, int,
    286   1.3  jmcneill 		    const struct fdtbus_clock_controller_func *);
    287   1.3  jmcneill int		fdtbus_register_reset_controller(device_t, int,
    288   1.3  jmcneill 		    const struct fdtbus_reset_controller_func *);
    289  1.31  jmcneill int		fdtbus_register_dai_controller(device_t, int,
    290  1.31  jmcneill 		    const struct fdtbus_dai_controller_func *);
    291  1.14  jmcneill int		fdtbus_register_dma_controller(device_t, int,
    292  1.14  jmcneill 		    const struct fdtbus_dma_controller_func *);
    293  1.18  jmcneill int		fdtbus_register_power_controller(device_t, int,
    294  1.18  jmcneill 		    const struct fdtbus_power_controller_func *);
    295  1.21  jmcneill int		fdtbus_register_phy_controller(device_t, int,
    296  1.21  jmcneill 		    const struct fdtbus_phy_controller_func *);
    297  1.30  jmcneill int		fdtbus_register_pwm_controller(device_t, int,
    298  1.30  jmcneill 		    const struct fdtbus_pwm_controller_func *);
    299  1.27  jmcneill int		fdtbus_register_mmc_pwrseq(device_t, int,
    300  1.27  jmcneill 		    const struct fdtbus_mmc_pwrseq_func *);
    301  1.35  jmcneill int		fdtbus_register_syscon(device_t, int, struct syscon *);
    302   1.1  jmcneill 
    303  1.28     skrll void		fdtbus_set_decoderegprop(bool);
    304  1.28     skrll 
    305   1.2  jmcneill int		fdtbus_get_reg(int, u_int, bus_addr_t *, bus_size_t *);
    306  1.26  jmcneill int		fdtbus_get_reg_byname(int, const char *, bus_addr_t *,
    307  1.26  jmcneill 		    bus_size_t *);
    308  1.17  jmcneill int		fdtbus_get_reg64(int, u_int, uint64_t *, uint64_t *);
    309  1.60  jmcneill int		fdtbus_get_addr_cells(int);
    310  1.60  jmcneill int		fdtbus_get_size_cells(int);
    311  1.60  jmcneill uint64_t	fdtbus_get_cells(const uint8_t *, int);
    312   1.2  jmcneill int		fdtbus_get_phandle(int, const char *);
    313  1.52   hkenken int		fdtbus_get_phandle_with_data(int, const char *, const char *,
    314  1.52   hkenken 		    int, struct fdt_phandle_data *);
    315   1.3  jmcneill int		fdtbus_get_phandle_from_native(int);
    316   1.2  jmcneill i2c_tag_t	fdtbus_get_i2c_tag(int);
    317  1.48  jmcneill i2c_tag_t	fdtbus_i2c_acquire(int, const char *);
    318   1.2  jmcneill void *		fdtbus_intr_establish(int, u_int, int, int,
    319   1.2  jmcneill 		    int (*func)(void *), void *arg);
    320  1.50  jakllsch void *		fdtbus_intr_establish_byname(int, const char *, int, int,
    321  1.50  jakllsch 		    int (*func)(void *), void *arg);
    322  1.39  jmcneill void *		fdtbus_intr_establish_raw(int, const u_int *, int, int,
    323  1.39  jmcneill 		    int (*func)(void *), void *arg);
    324  1.59   thorpej void		fdtbus_intr_mask(int, void *);
    325  1.59   thorpej void		fdtbus_intr_unmask(int, void *);
    326   1.2  jmcneill void		fdtbus_intr_disestablish(int, void *);
    327   1.2  jmcneill bool		fdtbus_intr_str(int, u_int, char *, size_t);
    328  1.39  jmcneill bool		fdtbus_intr_str_raw(int, const u_int *, char *, size_t);
    329  1.63   thorpej int		fdtbus_gpio_count(int, const char *);
    330   1.1  jmcneill struct fdtbus_gpio_pin *fdtbus_gpio_acquire(int, const char *, int);
    331  1.25  jmcneill struct fdtbus_gpio_pin *fdtbus_gpio_acquire_index(int, const char *, int, int);
    332   1.2  jmcneill void		fdtbus_gpio_release(struct fdtbus_gpio_pin *);
    333   1.2  jmcneill int		fdtbus_gpio_read(struct fdtbus_gpio_pin *);
    334   1.2  jmcneill void		fdtbus_gpio_write(struct fdtbus_gpio_pin *, int);
    335   1.4  jmcneill int		fdtbus_gpio_read_raw(struct fdtbus_gpio_pin *);
    336   1.4  jmcneill void		fdtbus_gpio_write_raw(struct fdtbus_gpio_pin *, int);
    337  1.31  jmcneill audio_dai_tag_t	fdtbus_dai_acquire(int, const char *);
    338  1.31  jmcneill audio_dai_tag_t	fdtbus_dai_acquire_index(int, const char *, int);
    339  1.30  jmcneill pwm_tag_t	fdtbus_pwm_acquire(int, const char *);
    340  1.30  jmcneill pwm_tag_t	fdtbus_pwm_acquire_index(int, const char *, int);
    341   1.6     marty int		fdtbus_pinctrl_set_config_index(int, u_int);
    342   1.6     marty int		fdtbus_pinctrl_set_config(int, const char *);
    343  1.54  jmcneill bool		fdtbus_pinctrl_has_config(int, const char *);
    344  1.46   thorpej const char *	fdtbus_pinctrl_parse_function(int);
    345  1.46   thorpej const void *	fdtbus_pinctrl_parse_pins(int, int *);
    346  1.46   thorpej const char *	fdtbus_pinctrl_parse_groups(int, int *);
    347  1.46   thorpej const u_int *	fdtbus_pinctrl_parse_pinmux(int, int *);
    348  1.46   thorpej int		fdtbus_pinctrl_parse_bias(int, int *);
    349  1.46   thorpej int		fdtbus_pinctrl_parse_drive(int);
    350  1.46   thorpej int		fdtbus_pinctrl_parse_drive_strength(int);
    351  1.46   thorpej int		fdtbus_pinctrl_parse_input_output(int, int *);
    352   1.1  jmcneill struct fdtbus_regulator *fdtbus_regulator_acquire(int, const char *);
    353   1.2  jmcneill void		fdtbus_regulator_release(struct fdtbus_regulator *);
    354   1.2  jmcneill int		fdtbus_regulator_enable(struct fdtbus_regulator *);
    355   1.2  jmcneill int		fdtbus_regulator_disable(struct fdtbus_regulator *);
    356  1.12  jmcneill int		fdtbus_regulator_set_voltage(struct fdtbus_regulator *,
    357  1.12  jmcneill 		    u_int, u_int);
    358  1.12  jmcneill int		fdtbus_regulator_get_voltage(struct fdtbus_regulator *,
    359  1.12  jmcneill 		    u_int *);
    360  1.44  jmcneill int		fdtbus_regulator_supports_voltage(struct fdtbus_regulator *,
    361  1.44  jmcneill 		    u_int, u_int);
    362  1.35  jmcneill struct syscon *	fdtbus_syscon_acquire(int, const char *);
    363  1.37  jmcneill struct syscon *	fdtbus_syscon_lookup(int);
    364   1.2  jmcneill 
    365  1.14  jmcneill struct fdtbus_dma *fdtbus_dma_get(int, const char *, void (*)(void *), void *);
    366  1.14  jmcneill struct fdtbus_dma *fdtbus_dma_get_index(int, u_int, void (*)(void *),
    367  1.14  jmcneill 		    void *);
    368  1.14  jmcneill void		fdtbus_dma_put(struct fdtbus_dma *);
    369  1.14  jmcneill int		fdtbus_dma_transfer(struct fdtbus_dma *,
    370  1.14  jmcneill 		    struct fdtbus_dma_req *);
    371  1.14  jmcneill void		fdtbus_dma_halt(struct fdtbus_dma *);
    372  1.14  jmcneill 
    373   1.3  jmcneill struct clk *	fdtbus_clock_get(int, const char *);
    374   1.3  jmcneill struct clk *	fdtbus_clock_get_index(int, u_int);
    375  1.33  jmcneill struct clk *	fdtbus_clock_byname(const char *);
    376  1.34  jmcneill void		fdtbus_clock_assign(int);
    377  1.56  jmcneill u_int		fdtbus_clock_count(int, const char *);
    378  1.57  jmcneill int		fdtbus_clock_enable(int, const char *, bool);
    379  1.57  jmcneill int		fdtbus_clock_enable_index(int, u_int, bool);
    380   1.3  jmcneill 
    381   1.3  jmcneill struct fdtbus_reset *fdtbus_reset_get(int, const char *);
    382   1.3  jmcneill struct fdtbus_reset *fdtbus_reset_get_index(int, u_int);
    383   1.3  jmcneill void		fdtbus_reset_put(struct fdtbus_reset *);
    384   1.3  jmcneill int		fdtbus_reset_assert(struct fdtbus_reset *);
    385   1.3  jmcneill int		fdtbus_reset_deassert(struct fdtbus_reset *);
    386   1.3  jmcneill 
    387  1.21  jmcneill struct fdtbus_phy *fdtbus_phy_get(int, const char *);
    388  1.21  jmcneill struct fdtbus_phy *fdtbus_phy_get_index(int, u_int);
    389  1.21  jmcneill void		fdtbus_phy_put(struct fdtbus_phy *);
    390  1.48  jmcneill device_t	fdtbus_phy_device(struct fdtbus_phy *);
    391  1.21  jmcneill int		fdtbus_phy_enable(struct fdtbus_phy *, bool);
    392  1.21  jmcneill 
    393  1.27  jmcneill struct fdtbus_mmc_pwrseq *fdtbus_mmc_pwrseq_get(int);
    394  1.27  jmcneill void		fdtbus_mmc_pwrseq_pre_power_on(struct fdtbus_mmc_pwrseq *);
    395  1.27  jmcneill void		fdtbus_mmc_pwrseq_post_power_on(struct fdtbus_mmc_pwrseq *);
    396  1.27  jmcneill void		fdtbus_mmc_pwrseq_power_off(struct fdtbus_mmc_pwrseq *);
    397  1.27  jmcneill void		fdtbus_mmc_pwrseq_reset(struct fdtbus_mmc_pwrseq *);
    398  1.27  jmcneill 
    399  1.11  jmcneill int		fdtbus_todr_attach(device_t, int, todr_chip_handle_t);
    400  1.11  jmcneill 
    401  1.18  jmcneill void		fdtbus_power_reset(void);
    402  1.18  jmcneill void		fdtbus_power_poweroff(void);
    403  1.18  jmcneill 
    404  1.38  jmcneill device_t	fdtbus_attach_i2cbus(device_t, int, i2c_tag_t, cfprint_t);
    405  1.53       tnn device_t	fdtbus_attach_spibus(device_t, int, cfprint_t);
    406  1.38  jmcneill 
    407  1.58   thorpej bool		fdtbus_init(const void *);
    408   1.2  jmcneill const void *	fdtbus_get_data(void);
    409   1.2  jmcneill int		fdtbus_phandle2offset(int);
    410   1.2  jmcneill int		fdtbus_offset2phandle(int);
    411   1.8  jmcneill bool		fdtbus_get_path(int, char *, size_t);
    412   1.1  jmcneill 
    413  1.19  jmcneill const struct fdt_console *fdtbus_get_console(void);
    414  1.19  jmcneill 
    415  1.10  jmcneill const char *	fdtbus_get_stdout_path(void);
    416  1.10  jmcneill int		fdtbus_get_stdout_phandle(void);
    417  1.10  jmcneill int		fdtbus_get_stdout_speed(void);
    418  1.19  jmcneill tcflag_t	fdtbus_get_stdout_flags(void);
    419  1.10  jmcneill 
    420  1.15  jmcneill bool		fdtbus_status_okay(int);
    421  1.15  jmcneill 
    422  1.23  jmcneill const void *	fdtbus_get_prop(int, const char *, int *);
    423  1.22  jmcneill const char *	fdtbus_get_string(int, const char *);
    424  1.24  jmcneill const char *	fdtbus_get_string_index(int, const char *, u_int);
    425  1.49  jakllsch int		fdtbus_get_index(int, const char *, const char *, u_int *);
    426  1.22  jmcneill 
    427  1.36  jmcneill void		fdt_add_bus(device_t, int, struct fdt_attach_args *);
    428  1.41  jmcneill void		fdt_add_bus_match(device_t, int, struct fdt_attach_args *,
    429  1.41  jmcneill 				  bool (*)(void *, int), void *);
    430  1.43  jmcneill void		fdt_add_child(device_t, int, struct fdt_attach_args *, u_int);
    431  1.36  jmcneill 
    432  1.29    bouyer void		fdt_remove_byhandle(int);
    433  1.29    bouyer void		fdt_remove_bycompat(const char *[]);
    434  1.45  jmcneill int		fdt_find_with_property(const char *, int *);
    435  1.16  jmcneill int		fdtbus_print(void *, const char *);
    436  1.16  jmcneill 
    437  1.60  jmcneill bus_dma_tag_t	fdtbus_dma_tag_create(int, const struct fdt_dma_range *,
    438  1.60  jmcneill 		    u_int);
    439  1.60  jmcneill 
    440  1.62     skrll #endif /* _DEV_FDT_FDTVAR_H_ */
    441