Home
last modified time | relevance | path

Searched defs:offset (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/device/soc/rockchip/common/sdk_linux/drivers/gpio/
Dgpio-rockchip.c72 …ic inline void rockchip_gpio_writel(struct rockchip_pin_bank *bank, u32 value, unsigned int offset) in rockchip_gpio_writel()
83 static inline u32 rockchip_gpio_readl(struct rockchip_pin_bank *bank, unsigned int offset) in rockchip_gpio_readl()
97 …d rockchip_gpio_writel_bit(struct rockchip_pin_bank *bank, u32 bit, u32 value, unsigned int offset) in rockchip_gpio_writel_bit()
119 …ic inline u32 rockchip_gpio_readl_bit(struct rockchip_pin_bank *bank, u32 bit, unsigned int offset) in rockchip_gpio_readl_bit()
135 static void rockchip_gpio_set(struct gpio_chip *gc, unsigned int offset, int value) in rockchip_gpio_set()
145 static int rockchip_gpio_get(struct gpio_chip *gc, unsigned int offset) in rockchip_gpio_get()
157 static int rockchip_gpio_get_direction(struct gpio_chip *chip, unsigned int offset) in rockchip_gpio_get_direction()
167 static int rockchip_gpio_set_direction(struct gpio_chip *chip, unsigned int offset, bool input) in rockchip_gpio_set_direction()
177 static int rockchip_gpio_direction_input(struct gpio_chip *gc, unsigned int offset) in rockchip_gpio_direction_input()
182 static int rockchip_gpio_direction_output(struct gpio_chip *gc, unsigned int offset, int value) in rockchip_gpio_direction_output()
[all …]
/device/soc/rockchip/common/vendor/drivers/gpio/
Dgpio-rockchip.c72 …ic inline void rockchip_gpio_writel(struct rockchip_pin_bank *bank, u32 value, unsigned int offset) in rockchip_gpio_writel()
83 static inline u32 rockchip_gpio_readl(struct rockchip_pin_bank *bank, unsigned int offset) in rockchip_gpio_readl()
97 …d rockchip_gpio_writel_bit(struct rockchip_pin_bank *bank, u32 bit, u32 value, unsigned int offset) in rockchip_gpio_writel_bit()
119 …ic inline u32 rockchip_gpio_readl_bit(struct rockchip_pin_bank *bank, u32 bit, unsigned int offset) in rockchip_gpio_readl_bit()
135 static void rockchip_gpio_set(struct gpio_chip *gc, unsigned int offset, int value) in rockchip_gpio_set()
145 static int rockchip_gpio_get(struct gpio_chip *gc, unsigned int offset) in rockchip_gpio_get()
157 static int rockchip_gpio_get_direction(struct gpio_chip *chip, unsigned int offset) in rockchip_gpio_get_direction()
167 static int rockchip_gpio_set_direction(struct gpio_chip *chip, unsigned int offset, bool input) in rockchip_gpio_set_direction()
177 static int rockchip_gpio_direction_input(struct gpio_chip *gc, unsigned int offset) in rockchip_gpio_direction_input()
182 static int rockchip_gpio_direction_output(struct gpio_chip *gc, unsigned int offset, int value) in rockchip_gpio_direction_output()
[all …]
/device/soc/rockchip/rk3588/kernel/drivers/gpio/
Dgpio-rockchip.c75 u32 value, unsigned int offset) in rockchip_gpio_writel()
86 unsigned int offset) in rockchip_gpio_readl()
101 unsigned int offset) in rockchip_gpio_writel_bit()
122 u32 bit, unsigned int offset) in rockchip_gpio_readl_bit()
139 unsigned int offset) in rockchip_gpio_get_direction()
152 unsigned int offset, bool input) in rockchip_gpio_set_direction()
165 static void rockchip_gpio_set(struct gpio_chip *gc, unsigned int offset, in rockchip_gpio_set()
176 static int rockchip_gpio_get(struct gpio_chip *gc, unsigned int offset) in rockchip_gpio_get()
189 unsigned int offset, in rockchip_gpio_set_debounce()
250 unsigned int offset) in rockchip_gpio_direction_input()
[all …]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/interdrv/common/cipher/src/drv/cipher_v1.0/osal/include/
Ddrv_osal_lib.h301 #define symc_read(offset) module_reg_read(CRYPTO_MODULE_ID_SYMC, offset) argument
302 #define symc_write(offset, val) module_reg_write(CRYPTO_MODULE_ID_SYMC, offset, val) argument
305 #define hash_read(offset) module_reg_read(CRYPTO_MODULE_ID_HASH, offset) argument
306 #define hash_write(offset, val) module_reg_write(CRYPTO_MODULE_ID_HASH, offset, val) argument
309 #define ifep_rsa_read(offset) module_reg_read(CRYPTO_MODULE_ID_IFEP_RSA, offset) argument
310 #define ifep_rsa_write(offset, val) module_reg_write(CRYPTO_MODULE_ID_IFEP_RSA, offset, val) argument
313 #define trng_read(offset) module_reg_read(CRYPTO_MODULE_ID_TRNG, offset) argument
314 #define trng_write(offset, val) module_reg_write(CRYPTO_MODULE_ID_TRNG, offset, val) argument
317 #define sm2_read(offset) module_reg_read(CRYPTO_MODULE_ID_SM2, offset) argument
318 #define sm2_write(offset, val) module_reg_write(CRYPTO_MODULE_ID_SM2, offset, val) argument
[all …]
/device/soc/rockchip/common/sdk_linux/drivers/tty/serial/8250/
D8250_dw.c77 static inline int dw8250_modify_msr(struct uart_port *p, int offset, int value) in dw8250_modify_msr()
100 void __iomem *offset = p->membase + (UART_LCR << p->regshift); in dw8250_check_lcr() local
156 static void dw8250_serial_out38x(struct uart_port *p, int offset, int value) in dw8250_serial_out38x()
172 static void dw8250_serial_out(struct uart_port *p, int offset, int value) in dw8250_serial_out()
183 static unsigned int dw8250_serial_in(struct uart_port *p, int offset) in dw8250_serial_in()
191 static unsigned int dw8250_serial_inq(struct uart_port *p, int offset) in dw8250_serial_inq()
200 static void dw8250_serial_outq(struct uart_port *p, int offset, int value) in dw8250_serial_outq()
215 static void dw8250_serial_out32(struct uart_port *p, int offset, int value) in dw8250_serial_out32()
226 static unsigned int dw8250_serial_in32(struct uart_port *p, int offset) in dw8250_serial_in32()
233 static void dw8250_serial_out32be(struct uart_port *p, int offset, int value) in dw8250_serial_out32be()
[all …]
D8250_port.c381 unsigned int au_serial_in(struct uart_port *p, int offset) in au_serial_in()
393 void au_serial_out(struct uart_port *p, int offset, int value) in au_serial_out()
418 static unsigned int hub6_serial_in(struct uart_port *p, int offset) in hub6_serial_in()
425 static void hub6_serial_out(struct uart_port *p, int offset, int value) in hub6_serial_out()
432 static unsigned int mem_serial_in(struct uart_port *p, int offset) in mem_serial_in()
438 static void mem_serial_out(struct uart_port *p, int offset, int value) in mem_serial_out()
444 static void mem16_serial_out(struct uart_port *p, int offset, int value) in mem16_serial_out()
450 static unsigned int mem16_serial_in(struct uart_port *p, int offset) in mem16_serial_in()
456 static void mem32_serial_out(struct uart_port *p, int offset, int value) in mem32_serial_out()
462 static unsigned int mem32_serial_in(struct uart_port *p, int offset) in mem32_serial_in()
[all …]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/drv/mmz/
Ddrv_mmz_intf.c80 HI_SIZE_T offset = 0; in remap_mmb() local
103 HI_SIZE_T offset = 0; in remap_mmb_cached() local
231 HI_U32 offset; in get_nonsecsmmu_by_secsmmu() local
248 HI_U32 offset; in get_phys_by_secsmmu() local
265 HI_U32 offset; in get_sec_smmu_by_phys() local
282 HI_U32 offset; in get_sec_smmu_by_nosmmu() local
/device/soc/rockchip/rk3588/kernel/drivers/net/ethernet/realtek/r8168/
Dr8168_asf.c240 void rtl8168_asf_ip_address(struct rtl8168_private *tp, int arg, int offset, unsigned int *data) in rtl8168_asf_ip_address()
264 void rtl8168_asf_config_regs(struct rtl8168_private *tp, int arg, int offset, unsigned int *data) in rtl8168_asf_config_regs()
282 void rtl8168_asf_capability_masks(struct rtl8168_private *tp, int arg, int offset, unsigned int *da… in rtl8168_asf_capability_masks()
332 void rtl8168_asf_time_period(struct rtl8168_private *tp, int arg, int offset, unsigned int *data) in rtl8168_asf_time_period()
352 void rtl8168_asf_key_access(struct rtl8168_private *tp, int arg, int offset, unsigned int *data) in rtl8168_asf_key_access()
380 void rtl8168_asf_rw_hexadecimal(struct rtl8168_private *tp, int arg, int offset, int len, unsigned … in rtl8168_asf_rw_hexadecimal()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/csf/
Dmali_kbase_csf_firmware_no_mali.c106 static inline u32 input_page_read(const u32 *const input, const u32 offset) in input_page_read()
113 static inline void input_page_write(u32 *const input, const u32 offset, in input_page_write()
121 static inline u32 output_page_read(const u32 *const output, const u32 offset) in output_page_read()
128 static inline void output_page_write(u32 *const output, const u32 offset, in output_page_write()
276 const struct kbase_csf_cmd_stream_info *const info, const u32 offset, in kbase_csf_firmware_cs_input()
292 const u32 offset) in kbase_csf_firmware_cs_input_read()
302 const struct kbase_csf_cmd_stream_info *const info, const u32 offset, in kbase_csf_firmware_cs_input_mask()
315 const struct kbase_csf_cmd_stream_info *const info, const u32 offset) in kbase_csf_firmware_cs_output()
326 const u32 offset, const u32 value) in kbase_csf_firmware_csg_input()
342 const u32 offset) in kbase_csf_firmware_csg_input_read()
[all …]
Dmali_kbase_csf_firmware.c112 static inline u32 input_page_read(const u32 *const input, const u32 offset) in input_page_read()
119 static inline void input_page_write(u32 *const input, const u32 offset, in input_page_write()
127 static inline void input_page_partial_write(u32 *const input, const u32 offset, in input_page_partial_write()
136 static inline u32 output_page_read(const u32 *const output, const u32 offset) in output_page_read()
750 u32 offset, u32 header) in load_firmware_entry()
1085 const struct kbase_csf_cmd_stream_info *const info, const u32 offset, in kbase_csf_firmware_cs_input()
1096 const u32 offset) in kbase_csf_firmware_cs_input_read()
1106 const struct kbase_csf_cmd_stream_info *const info, const u32 offset, in kbase_csf_firmware_cs_input_mask()
1117 const struct kbase_csf_cmd_stream_info *const info, const u32 offset) in kbase_csf_firmware_cs_output()
1128 const u32 offset, const u32 value) in kbase_csf_firmware_csg_input()
[all …]
/device/soc/rockchip/rk3588/kernel/drivers/pinctrl/
Dpinctrl-rk806.c195 static int rk806_gpio_get(struct gpio_chip *chip, unsigned int offset) in rk806_gpio_get()
216 unsigned int offset, in rk806_gpio_set()
235 unsigned int offset) in rk806_gpio_direction_input()
241 unsigned int offset, in rk806_gpio_direction_output()
249 unsigned int offset) in rk806_gpio_get_direction()
350 unsigned int offset, in _rk806_pinctrl_set_mux()
376 int offset = group; in rk806_pinctrl_set_mux() local
383 unsigned int offset, bool input) in rk806_pmx_gpio_set_direction()
406 unsigned int offset) in rk806_pinctrl_gpio_request_enable()
/device/soc/rockchip/common/sdk_linux/drivers/pinctrl/
Dpinctrl-rk805.c267 static int rk805_gpio_get(struct gpio_chip *chip, unsigned int offset) in rk805_gpio_get()
286 static void rk805_gpio_set(struct gpio_chip *chip, unsigned int offset, int value) in rk805_gpio_set()
300 static int rk805_gpio_direction_input(struct gpio_chip *chip, unsigned int offset) in rk805_gpio_direction_input()
305 static int rk805_gpio_direction_output(struct gpio_chip *chip, unsigned int offset, int value) in rk805_gpio_direction_output()
311 static int rk805_gpio_get_direction(struct gpio_chip *chip, unsigned int offset) in rk805_gpio_get_direction()
436 static int _rk805_pinctrl_set_mux(struct pinctrl_dev *pctldev, unsigned int offset, int mux) in _rk805_pinctrl_set_mux()
466 static int _rk817_pinctrl_set_mux(struct pinctrl_dev *pctldev, unsigned int offset, int mux) in _rk817_pinctrl_set_mux()
488 int offset = group; in rk805_pinctrl_set_mux() local
505 unsigned int offset, bool input) in rk805_pmx_gpio_set_direction()
526 unsigned int offset) in rk805_pinctrl_gpio_request_enable()
/device/soc/rockchip/common/vendor/drivers/gpu/arm/mali400/mali/linux/
Dmali_osk_low_level_mem.c61 void inline _mali_osk_mem_iowrite32_relaxed(volatile mali_io_address addr, u32 offset, u32 val) in _mali_osk_mem_iowrite32_relaxed()
66 u32 inline _mali_osk_mem_ioread32(volatile mali_io_address addr, u32 offset) in _mali_osk_mem_ioread32()
71 void inline _mali_osk_mem_iowrite32(volatile mali_io_address addr, u32 offset, u32 val) in _mali_osk_mem_iowrite32()
81 void _mali_osk_cache_ensure_uncached_range_flushed(void *uncached_mapping, u32 offset, u32 size) in _mali_osk_cache_ensure_uncached_range_flushed()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/mali400/mali/linux/
Dmali_osk_low_level_mem.c60 void inline _mali_osk_mem_iowrite32_relaxed(volatile mali_io_address addr, u32 offset, u32 val) in _mali_osk_mem_iowrite32_relaxed()
65 u32 inline _mali_osk_mem_ioread32(volatile mali_io_address addr, u32 offset) in _mali_osk_mem_ioread32()
70 void inline _mali_osk_mem_iowrite32(volatile mali_io_address addr, u32 offset, u32 val) in _mali_osk_mem_iowrite32()
80 void _mali_osk_cache_ensure_uncached_range_flushed(void *uncached_mapping, u32 offset, u32 size) in _mali_osk_cache_ensure_uncached_range_flushed()
/device/soc/hisilicon/hi3861v100/sdk_liteos/boot/flashboot/upg/
Dboot_upg_tool.c26 hi_u32 kernel_comprss_flash_read(hi_u32 offset, hi_u8 *buffer, hi_u32 size) in kernel_comprss_flash_read()
44 hi_u32 kernel_comprss_flash_write(hi_u32 offset, hi_u8 *buffer, hi_u32 size) in kernel_comprss_flash_write()
63 hi_u32 kernel_comprss_flash_hash(hi_u32 offset, hi_u8 *buffer, hi_u32 size) in kernel_comprss_flash_hash()
136 for (uintptr_t offset = 0; offset < total_size;) { in boot_upg_hash_one_content() local
167 for (uintptr_t offset = 0; offset < size;) { in boot_upg_hash_more_content() local
Dboot_start.c75 hi_void set_running_kernel_flag(hi_u32 offset) in set_running_kernel_flag()
107 hi_u32 offset = 0; in boot_head() local
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/device/backend/
Dmali_kbase_device_hw_csf.c183 static bool kbase_is_register_accessible(u32 offset) in kbase_is_register_accessible()
196 void kbase_reg_write(struct kbase_device *kbdev, u32 offset, u32 value) in kbase_reg_write()
215 u32 kbase_reg_read(struct kbase_device *kbdev, u32 offset) in kbase_reg_read()
Dmali_kbase_device_hw_jm.c102 void kbase_reg_write(struct kbase_device *kbdev, u32 offset, u32 value) in kbase_reg_write()
118 u32 kbase_reg_read(struct kbase_device *kbdev, u32 offset) in kbase_reg_read()
/device/soc/rockchip/common/sdk_linux/drivers/nvmem/
Drockchip-efuse.c141 static int rockchip_rk1808_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk1808_efuse_read()
198 static int rockchip_rk3128_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk3128_efuse_read()
233 static int rockchip_rk3288_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk3288_efuse_read()
268 static int rockchip_rk3288_efuse_secure_read(void *context, unsigned int offset, void *val, size_t … in rockchip_rk3288_efuse_secure_read()
306 static int rockchip_rk3328_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk3328_efuse_read()
358 static int rockchip_rk3368_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk3368_efuse_read()
396 static int rockchip_rk3399_efuse_read(void *context, unsigned int offset, void *val, size_t bytes) in rockchip_rk3399_efuse_read()
/device/soc/rockchip/common/kernel/drivers/gpu/arm/midgard/backend/gpu/
Dmali_kbase_debug_job_fault_backend.c80 int offset = 0; in kbase_debug_job_fault_reg_snapshot_init() local
142 int offset = 0; in kbase_job_fault_get_reg_snapshot() local
/device/soc/rockchip/common/kernel/drivers/gpu/arm/bifrost/backend/gpu/
Dmali_kbase_debug_job_fault_backend.c86 int offset = 0; in kbase_debug_job_fault_reg_snapshot_init() local
148 int offset = 0; in kbase_job_fault_get_reg_snapshot() local
/device/soc/rockchip/common/vendor/drivers/gpu/arm/bifrost/backend/gpu/
Dmali_kbase_debug_job_fault_backend.c51 int offset = 0; in kbase_debug_job_fault_reg_snapshot_init() local
109 int offset = 0; in kbase_job_fault_get_reg_snapshot() local
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/backend/gpu/
Dmali_kbase_debug_job_fault_backend.c44 int offset = 0; in kbase_debug_job_fault_reg_snapshot_init() local
102 int offset = 0; in kbase_job_fault_get_reg_snapshot() local
/device/soc/rockchip/common/kernel/drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd_wifi6/
Ddhd_pcie_linux.c1003 dhdpcie_os_chkbpoffset(dhdpcie_info_t *pch, ulong offset) in dhdpcie_os_chkbpoffset()
1022 dhdpcie_os_wtcm8(dhd_bus_t *bus, ulong offset, uint8 data) in dhdpcie_os_wtcm8()
1031 dhdpcie_os_rtcm8(dhd_bus_t *bus, ulong offset) in dhdpcie_os_rtcm8()
1042 dhdpcie_os_wtcm16(dhd_bus_t *bus, ulong offset, uint16 data) in dhdpcie_os_wtcm16()
1051 dhdpcie_os_rtcm16(dhd_bus_t *bus, ulong offset) in dhdpcie_os_rtcm16()
1062 dhdpcie_os_wtcm32(dhd_bus_t *bus, ulong offset, uint32 data) in dhdpcie_os_wtcm32()
1071 dhdpcie_os_rtcm32(dhd_bus_t *bus, ulong offset) in dhdpcie_os_rtcm32()
1083 dhdpcie_os_wtcm64(dhd_bus_t *bus, ulong offset, uint64 data) in dhdpcie_os_wtcm64()
1092 dhdpcie_os_rtcm64(dhd_bus_t *bus, ulong offset) in dhdpcie_os_rtcm64()
1104 dhdpcie_rc_config_read(dhd_bus_t *bus, uint offset) in dhdpcie_rc_config_read()
[all …]
/device/qemu/SmartL_E802/liteos_m/board/hals/csky_driver/src/
Ddw_gpio.c141 uint32_t offset = gpio_pin_priv->idx; in gpio_set_irq_mode() local
214 uint32_t offset = gpio_pin_priv->idx; in gpio_irq_enable() local
231 uint32_t offset = gpio_pin_priv->idx; in gpio_irq_disable() local
553 uint8_t offset = gpio_pin_priv->idx; in csi_gpio_pin_config_mode() local
636 uint8_t offset = gpio_pin_priv->idx; in csi_gpio_pin_write() local
659 uint8_t offset = gpio_pin_priv->idx; in csi_gpio_pin_read() local

12345678910>>...18