/* $OpenBSD: ofw_misc.h,v 1.7 2019/09/30 20:40:54 kettenis Exp $ */ /* * Copyright (c) 2017 Mark Kettenis * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #ifndef _DEV_OFW_MISC_H_ #define _DEV_OFW_MISC_H_ /* Register maps */ void regmap_register(int, bus_space_tag_t, bus_space_handle_t, bus_size_t); struct regmap; struct regmap *regmap_bycompatible(char *); struct regmap *regmap_bynode(int); struct regmap *regmap_byphandle(uint32_t); uint32_t regmap_read_4(struct regmap *, bus_size_t); void regmap_write_4(struct regmap *, bus_size_t, uint32_t); /* PHY support */ #define PHY_NONE 0 #define PHY_TYPE_SATA 1 #define PHY_TYPE_PCIE 2 #define PHY_TYPE_USB2 3 #define PHY_TYPE_USB3 4 #define PHY_TYPE_UFS 5 struct phy_device { int pd_node; void *pd_cookie; int (*pd_enable)(void *, uint32_t *); LIST_ENTRY(phy_device) pd_list; uint32_t pd_phandle; uint32_t pd_cells; }; void phy_register(struct phy_device *); int phy_enable_idx(int, int); int phy_enable(int, const char *); /* I2C support */ struct i2c_controller; struct i2c_bus { int ib_node; struct i2c_controller *ib_ic; LIST_ENTRY(i2c_bus) ib_list; uint32_t ib_phandle; }; void i2c_register(struct i2c_bus *); struct i2c_controller *i2c_bynode(int); struct i2c_controller *i2c_byphandle(uint32_t); /* SFP support */ struct if_sffpage; struct sfp_device { int sd_node; void *sd_cookie; int (*sd_get_sffpage)(void *, struct if_sffpage *); LIST_ENTRY(sfp_device) sd_list; uint32_t sd_phandle; }; void sfp_register(struct sfp_device *); int sfp_get_sffpage(uint32_t, struct if_sffpage *); /* PWM support */ #define PWM_POLARITY_INVERTED 0x00000001 struct pwm_state { uint32_t ps_period; uint32_t ps_pulse_width; uint32_t ps_flags; int ps_enabled; }; struct pwm_device { int pd_node; void *pd_cookie; int (*pd_get_state)(void *, uint32_t *, struct pwm_state *); int (*pd_set_state)(void *, uint32_t *, struct pwm_state *); LIST_ENTRY(pwm_device) pd_list; uint32_t pd_phandle; uint32_t pd_cells; }; void pwm_register(struct pwm_device *); int pwm_init_state(uint32_t *cells, struct pwm_state *ps); int pwm_get_state(uint32_t *cells, struct pwm_state *ps); int pwm_set_state(uint32_t *cells, struct pwm_state *ps); #endif /* _DEV_OFW_MISC_H_ */