Module Name: src
Committed By: skrll
Date: Fri Jan 14 07:40:52 UTC 2022
Modified Files:
src/sys/dev/fdt: fdtvar.h
Log Message:
Formatting. NFCI.
To generate a diff of this commit:
cvs rdiff -u -r1.73 -r1.74 src/sys/dev/fdt/fdtvar.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/fdt/fdtvar.h
diff -u src/sys/dev/fdt/fdtvar.h:1.73 src/sys/dev/fdt/fdtvar.h:1.74
--- src/sys/dev/fdt/fdtvar.h:1.73 Sun Nov 7 17:13:53 2021
+++ src/sys/dev/fdt/fdtvar.h Fri Jan 14 07:40:52 2022
@@ -1,4 +1,4 @@
-/* $NetBSD: fdtvar.h,v 1.73 2021/11/07 17:13:53 jmcneill Exp $ */
+/* $NetBSD: fdtvar.h,v 1.74 2022/01/14 07:40:52 skrll Exp $ */
/*-
* Copyright (c) 2015 Jared D. McNeill <[email protected]>
@@ -60,7 +60,7 @@ struct fdt_attach_args {
};
/* flags for fdtbus_intr_establish */
-#define FDT_INTR_MPSAFE __BIT(0)
+#define FDT_INTR_MPSAFE __BIT(0)
/* Interrupt trigger types defined by the FDT "interrupts" bindings. */
#define FDT_INTR_TYPE_POS_EDGE __BIT(0)
@@ -321,8 +321,10 @@ int fdtbus_get_phandle(int, const char
int fdtbus_get_phandle_with_data(int, const char *, const char *,
int, struct fdt_phandle_data *);
int fdtbus_get_phandle_from_native(int);
+
i2c_tag_t fdtbus_get_i2c_tag(int);
i2c_tag_t fdtbus_i2c_acquire(int, const char *);
+
void * fdtbus_intr_establish(int, u_int, int, int,
int (*func)(void *), void *arg);
void * fdtbus_intr_establish_xname(int, u_int, int, int,
@@ -337,18 +339,24 @@ void fdtbus_intr_disestablish(int, void
bool fdtbus_intr_str(int, u_int, char *, size_t);
bool fdtbus_intr_str_raw(int, const u_int *, char *, size_t);
int fdtbus_intr_parent(int);
+
int fdtbus_gpio_count(int, const char *);
-struct fdtbus_gpio_pin *fdtbus_gpio_acquire(int, const char *, int);
-struct fdtbus_gpio_pin *fdtbus_gpio_acquire_index(int, const char *, int, int);
+struct fdtbus_gpio_pin *
+ fdtbus_gpio_acquire(int, const char *, int);
+struct fdtbus_gpio_pin *
+ fdtbus_gpio_acquire_index(int, const char *, int, int);
void fdtbus_gpio_release(struct fdtbus_gpio_pin *);
int fdtbus_gpio_read(struct fdtbus_gpio_pin *);
void fdtbus_gpio_write(struct fdtbus_gpio_pin *, int);
int fdtbus_gpio_read_raw(struct fdtbus_gpio_pin *);
void fdtbus_gpio_write_raw(struct fdtbus_gpio_pin *, int);
+
audio_dai_tag_t fdtbus_dai_acquire(int, const char *);
audio_dai_tag_t fdtbus_dai_acquire_index(int, const char *, int);
+
pwm_tag_t fdtbus_pwm_acquire(int, const char *);
pwm_tag_t fdtbus_pwm_acquire_index(int, const char *, int);
+
int fdtbus_pinctrl_set_config_index(int, u_int);
int fdtbus_pinctrl_set_config(int, const char *);
bool fdtbus_pinctrl_has_config(int, const char *);
@@ -360,7 +368,9 @@ int fdtbus_pinctrl_parse_bias(int, int
int fdtbus_pinctrl_parse_drive(int);
int fdtbus_pinctrl_parse_drive_strength(int);
int fdtbus_pinctrl_parse_input_output(int, int *);
-struct fdtbus_regulator *fdtbus_regulator_acquire(int, const char *);
+
+struct fdtbus_regulator *
+ fdtbus_regulator_acquire(int, const char *);
void fdtbus_regulator_release(struct fdtbus_regulator *);
int fdtbus_regulator_enable(struct fdtbus_regulator *);
int fdtbus_regulator_disable(struct fdtbus_regulator *);
@@ -370,13 +380,17 @@ int fdtbus_regulator_get_voltage(struct
u_int *);
int fdtbus_regulator_supports_voltage(struct fdtbus_regulator *,
u_int, u_int);
+
struct syscon * fdtbus_syscon_acquire(int, const char *);
struct syscon * fdtbus_syscon_lookup(int);
+
bus_dma_tag_t fdtbus_iommu_map(int, u_int, bus_dma_tag_t);
bus_dma_tag_t fdtbus_iommu_map_pci(int, uint32_t, bus_dma_tag_t);
-struct fdtbus_dma *fdtbus_dma_get(int, const char *, void (*)(void *), void *);
-struct fdtbus_dma *fdtbus_dma_get_index(int, u_int, void (*)(void *),
+struct fdtbus_dma *
+ fdtbus_dma_get(int, const char *, void (*)(void *), void *);
+struct fdtbus_dma *
+ fdtbus_dma_get_index(int, u_int, void (*)(void *),
void *);
void fdtbus_dma_put(struct fdtbus_dma *);
int fdtbus_dma_transfer(struct fdtbus_dma *,
@@ -391,19 +405,24 @@ u_int fdtbus_clock_count(int, const cha
int fdtbus_clock_enable(int, const char *, bool);
int fdtbus_clock_enable_index(int, u_int, bool);
-struct fdtbus_reset *fdtbus_reset_get(int, const char *);
-struct fdtbus_reset *fdtbus_reset_get_index(int, u_int);
+struct fdtbus_reset *
+ fdtbus_reset_get(int, const char *);
+struct fdtbus_reset *
+ fdtbus_reset_get_index(int, u_int);
void fdtbus_reset_put(struct fdtbus_reset *);
int fdtbus_reset_assert(struct fdtbus_reset *);
int fdtbus_reset_deassert(struct fdtbus_reset *);
-struct fdtbus_phy *fdtbus_phy_get(int, const char *);
-struct fdtbus_phy *fdtbus_phy_get_index(int, u_int);
+struct fdtbus_phy *
+ fdtbus_phy_get(int, const char *);
+struct fdtbus_phy *
+ fdtbus_phy_get_index(int, u_int);
void fdtbus_phy_put(struct fdtbus_phy *);
device_t fdtbus_phy_device(struct fdtbus_phy *);
int fdtbus_phy_enable(struct fdtbus_phy *, bool);
-struct fdtbus_mmc_pwrseq *fdtbus_mmc_pwrseq_get(int);
+struct fdtbus_mmc_pwrseq *
+ fdtbus_mmc_pwrseq_get(int);
void fdtbus_mmc_pwrseq_pre_power_on(struct fdtbus_mmc_pwrseq *);
void fdtbus_mmc_pwrseq_post_power_on(struct fdtbus_mmc_pwrseq *);
void fdtbus_mmc_pwrseq_power_off(struct fdtbus_mmc_pwrseq *);
@@ -423,7 +442,8 @@ int fdtbus_phandle2offset(int);
int fdtbus_offset2phandle(int);
bool fdtbus_get_path(int, char *, size_t);
-const struct fdt_console *fdtbus_get_console(void);
+const struct fdt_console *
+ fdtbus_get_console(void);
const char * fdtbus_get_stdout_path(void);
int fdtbus_get_stdout_phandle(void);
@@ -439,7 +459,7 @@ int fdtbus_get_index(int, const char *,
void fdt_add_bus(device_t, int, struct fdt_attach_args *);
void fdt_add_bus_match(device_t, int, struct fdt_attach_args *,
- bool (*)(void *, int), void *);
+ bool (*)(void *, int), void *);
void fdt_add_child(device_t, int, struct fdt_attach_args *, u_int);
void fdt_remove_byhandle(int);