Home
last modified time | relevance | path

Searched defs:regs (Results 1 – 25 of 487) sorted by relevance

12345678910>>...20

/external/u-boot/arch/arc/lib/
Dinterrupts.c61 void show_regs(struct pt_regs *regs) in show_regs()
75 void bad_mode(struct pt_regs *regs) in bad_mode()
83 void do_memory_error(unsigned long address, struct pt_regs *regs) in do_memory_error()
89 void do_instruction_error(unsigned long address, struct pt_regs *regs) in do_instruction_error()
95 void do_machine_check_fault(unsigned long address, struct pt_regs *regs) in do_machine_check_fault()
107 void do_itlb_miss(struct pt_regs *regs) in do_itlb_miss()
113 void do_dtlb_miss(struct pt_regs *regs) in do_dtlb_miss()
119 void do_tlb_prot_violation(unsigned long address, struct pt_regs *regs) in do_tlb_prot_violation()
126 void do_privilege_violation(struct pt_regs *regs) in do_privilege_violation()
132 void do_trap(struct pt_regs *regs) in do_trap()
[all …]
/external/u-boot/arch/powerpc/cpu/mpc8xx/
Dtraps.c54 static void show_regs(struct pt_regs *regs) in show_regs()
78 static void _exception(int signr, struct pt_regs *regs) in _exception()
85 void MachineCheckException(struct pt_regs *regs) in MachineCheckException()
123 void AlignmentException(struct pt_regs *regs) in AlignmentException()
130 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException()
137 void SoftEmuException(struct pt_regs *regs) in SoftEmuException()
145 void UnknownException(struct pt_regs *regs) in UnknownException()
152 void DebugException(struct pt_regs *regs) in DebugException()
/external/u-boot/arch/powerpc/cpu/mpc83xx/
Dtraps.c51 void show_regs(struct pt_regs *regs) in show_regs()
77 static void _exception(int signr, struct pt_regs *regs) in _exception()
101 void MachineCheckException(struct pt_regs *regs) in MachineCheckException()
160 void AlignmentException(struct pt_regs *regs) in AlignmentException()
171 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException()
182 void SoftEmuException(struct pt_regs *regs) in SoftEmuException()
194 void UnknownException(struct pt_regs *regs) in UnknownException()
209 void DebugException(struct pt_regs *regs) in DebugException()
/external/u-boot/arch/powerpc/cpu/mpc86xx/
Dtraps.c58 void show_regs(struct pt_regs *regs) in show_regs()
86 static void _exception(int signr, struct pt_regs *regs) in _exception()
93 void MachineCheckException(struct pt_regs *regs) in MachineCheckException()
139 void AlignmentException(struct pt_regs *regs) in AlignmentException()
150 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException()
175 void SoftEmuException(struct pt_regs *regs) in SoftEmuException()
186 void UnknownException(struct pt_regs *regs) in UnknownException()
/external/u-boot/arch/powerpc/cpu/mpc85xx/
Dtraps.c87 void show_regs(struct pt_regs *regs) in show_regs()
115 static void _exception(int signr, struct pt_regs *regs) in _exception()
122 void CritcalInputException(struct pt_regs *regs) in CritcalInputException()
129 void MachineCheckException(struct pt_regs *regs) in MachineCheckException()
201 void AlignmentException(struct pt_regs *regs) in AlignmentException()
213 void ProgramCheckException(struct pt_regs *regs) in ProgramCheckException()
236 void PITException(struct pt_regs *regs) in PITException()
249 void UnknownException(struct pt_regs *regs) in UnknownException()
261 void ExtIntException(struct pt_regs *regs) in ExtIntException()
280 void DebugException(struct pt_regs *regs) in DebugException()
/external/u-boot/drivers/rtc/
Dmvrtc.c21 static int __mv_rtc_get(struct mvrtc_registers *regs, struct rtc_time *t) in __mv_rtc_get()
61 struct mvrtc_registers *regs; in rtc_get() local
68 static int __mv_rtc_set(struct mvrtc_registers *regs, const struct rtc_time *t) in __mv_rtc_set()
100 struct mvrtc_registers *regs; in rtc_set() local
107 static void __mv_rtc_reset(struct mvrtc_registers *regs) in __mv_rtc_reset()
125 struct mvrtc_registers *regs; in rtc_reset() local
136 struct mvrtc_registers *regs = (struct mvrtc_registers *)pdata->iobase; in mv_rtc_get() local
144 struct mvrtc_registers *regs = (struct mvrtc_registers *)pdata->iobase; in mv_rtc_set() local
152 struct mvrtc_registers *regs = (struct mvrtc_registers *)pdata->iobase; in mv_rtc_reset() local
/external/u-boot/board/cavium/thunderx/
Datf.c20 struct pt_regs regs; in atf_read_mmc() local
33 struct pt_regs regs; in atf_read_nor() local
46 struct pt_regs regs; in atf_get_pcount() local
56 struct pt_regs regs; in atf_get_part() local
68 struct pt_regs regs; in atf_erase_nor() local
80 struct pt_regs regs; in atf_write_nor() local
94 struct pt_regs regs; in atf_write_mmc() local
108 struct pt_regs regs; in atf_dram_size() local
119 struct pt_regs regs; in atf_node_count() local
129 struct pt_regs regs; in atf_env_count() local
[all …]
/external/u-boot/arch/mips/include/asm/
Dptrace.h27 unsigned long regs[32]; member
46 static inline unsigned long kernel_stack_pointer(struct pt_regs *regs) in kernel_stack_pointer()
56 static inline void instruction_pointer_set(struct pt_regs *regs, in instruction_pointer_set()
75 static inline unsigned long regs_get_register(struct pt_regs *regs, in regs_get_register()
87 #define user_mode(regs) (((regs)->cp0_status & KU_MASK) == KU_USER) argument
89 #define instruction_pointer(regs) ((regs)->cp0_epc) argument
90 #define profile_pc(regs) instruction_pointer(regs) argument
94 static inline unsigned long user_stack_pointer(struct pt_regs *regs) in user_stack_pointer()
99 static inline void user_stack_pointer_set(struct pt_regs *regs, in user_stack_pointer_set()
/external/u-boot/drivers/video/exynos/
Dexynos_dp.c39 static int exynos_dp_init_dp(struct exynos_dp *regs) in exynos_dp_init_dp()
68 static unsigned int exynos_dp_read_edid(struct exynos_dp *regs) in exynos_dp_read_edid()
167 static unsigned int exynos_dp_handle_edid(struct exynos_dp *regs, in exynos_dp_handle_edid()
244 static void exynos_dp_init_training(struct exynos_dp *regs) in exynos_dp_init_training()
256 static unsigned int exynos_dp_link_start(struct exynos_dp *regs, in exynos_dp_link_start()
321 static unsigned int exynos_dp_training_pattern_dis(struct exynos_dp *regs) in exynos_dp_training_pattern_dis()
338 struct exynos_dp *regs, unsigned char enable) in exynos_dp_enable_rx_to_enhanced_mode()
365 static unsigned int exynos_dp_set_enhanced_mode(struct exynos_dp *regs, in exynos_dp_set_enhanced_mode()
381 static int exynos_dp_read_dpcd_lane_stat(struct exynos_dp *regs, in exynos_dp_read_dpcd_lane_stat()
415 static unsigned int exynos_dp_read_dpcd_adj_req(struct exynos_dp *regs, in exynos_dp_read_dpcd_adj_req()
[all …]
/external/u-boot/drivers/i2c/
Dimx_lpi2c.c26 static int imx_lpci2c_check_busy_bus(const struct imx_lpi2c_reg *regs) in imx_lpci2c_check_busy_bus()
39 static int imx_lpci2c_check_clear_error(struct imx_lpi2c_reg *regs) in imx_lpci2c_check_clear_error()
70 static int bus_i2c_wait_for_tx_ready(struct imx_lpi2c_reg *regs) in bus_i2c_wait_for_tx_ready()
93 static int bus_i2c_send(struct imx_lpi2c_reg *regs, u8 *txbuf, int len) in bus_i2c_send()
113 static int bus_i2c_receive(struct imx_lpi2c_reg *regs, u8 *rxbuf, int len) in bus_i2c_receive()
155 static int bus_i2c_start(struct imx_lpi2c_reg *regs, u8 addr, u8 dir) in bus_i2c_start()
183 static int bus_i2c_stop(struct imx_lpi2c_reg *regs) in bus_i2c_stop()
212 static int bus_i2c_read(struct imx_lpi2c_reg *regs, u32 chip, u8 *buf, int len) in bus_i2c_read()
229 static int bus_i2c_write(struct imx_lpi2c_reg *regs, u32 chip, u8 *buf, int len) in bus_i2c_write()
249 struct imx_lpi2c_reg *regs; in bus_i2c_set_bus_speed() local
[all …]
/external/u-boot/arch/riscv/include/asm/
Dptrace.h57 #define user_mode(regs) (((regs)->sstatus & SR_PS) == 0) argument
60 #define GET_IP(regs) ((regs)->sepc) argument
61 #define SET_IP(regs, val) (GET_IP(regs) = (val)) argument
63 static inline unsigned long instruction_pointer(struct pt_regs *regs) in instruction_pointer()
68 static inline void instruction_pointer_set(struct pt_regs *regs, ulong val) in instruction_pointer_set()
73 #define profile_pc(regs) instruction_pointer(regs) argument
76 #define GET_USP(regs) ((regs)->sp) argument
77 #define SET_USP(regs, val) (GET_USP(regs) = (val)) argument
79 static inline unsigned long user_stack_pointer(struct pt_regs *regs) in user_stack_pointer()
84 static inline void user_stack_pointer_set(struct pt_regs *regs, ulong val) in user_stack_pointer_set()
[all …]
/external/u-boot/arch/arm/include/asm/proc-armv/
Dptrace.h25 unsigned long regs[31]; member
85 #define user_mode(regs) \ argument
89 #define thumb_mode(regs) \ argument
92 #define thumb_mode(regs) (0) argument
95 #define processor_mode(regs) \ argument
98 #define interrupts_enabled(regs) \ argument
101 #define fast_interrupts_enabled(regs) \ argument
104 #define condition_codes(regs) \ argument
110 static inline int valid_user_regs(struct pt_regs *regs) in valid_user_regs()
/external/u-boot/drivers/serial/
Dserial_xuartlite.c33 struct uartlite *regs; member
39 struct uartlite *regs = plat->regs; in uartlite_serial_putc() local
52 struct uartlite *regs = plat->regs; in uartlite_serial_getc() local
63 struct uartlite *regs = plat->regs; in uartlite_serial_pending() local
74 struct uartlite *regs = plat->regs; in uartlite_serial_probe() local
121 struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE; in _debug_uart_init() local
130 struct uartlite *regs = (struct uartlite *)CONFIG_DEBUG_UART_BASE; in _debug_uart_putc() local
Daltera_uart.c30 struct altera_uart_regs *regs; member
37 struct altera_uart_regs *const regs = plat->regs; in altera_uart_setbrg() local
49 struct altera_uart_regs *const regs = plat->regs; in altera_uart_putc() local
62 struct altera_uart_regs *const regs = plat->regs; in altera_uart_pending() local
74 struct altera_uart_regs *const regs = plat->regs; in altera_uart_getc() local
129 struct altera_uart_regs *regs = (void *)CONFIG_DEBUG_UART_BASE; in _debug_uart_init() local
138 struct altera_uart_regs *regs = (void *)CONFIG_DEBUG_UART_BASE; in _debug_uart_putc() local
Daltera_jtag_uart.c29 struct altera_jtaguart_regs *regs; member
40 struct altera_jtaguart_regs *const regs = plat->regs; in altera_jtaguart_putc() local
59 struct altera_jtaguart_regs *const regs = plat->regs; in altera_jtaguart_pending() local
71 struct altera_jtaguart_regs *const regs = plat->regs; in altera_jtaguart_getc() local
86 struct altera_jtaguart_regs *const regs = plat->regs; in altera_jtaguart_probe() local
137 struct altera_jtaguart_regs *regs = (void *)CONFIG_DEBUG_UART_BASE; in _debug_uart_putc() local
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
Dptrace.cc33 user_regs_struct regs; in main() local
47 struct pt_regs regs; in main() local
78 struct user_pt_regs regs; in main() local
98 struct _user_regs_struct regs; in main() local
/external/u-boot/drivers/net/fm/
Dmemac.c20 struct memac *regs = mac->base; in memac_init_mac() local
37 struct memac *regs = mac->base; in memac_enable_mac() local
45 struct memac *regs = mac->base; in memac_disable_mac() local
52 struct memac *regs = mac->base; in memac_set_mac_addr() local
72 struct memac *regs = mac->base; in memac_set_interface_mode() local
Ddtsec.c28 struct dtsec *regs = mac->base; in dtsec_init_mac() local
66 struct dtsec *regs = mac->base; in dtsec_enable_mac() local
80 struct dtsec *regs = mac->base; in dtsec_disable_mac() local
94 struct dtsec *regs = mac->base; in dtsec_set_mac_addr() local
112 struct dtsec *regs = mac->base; in dtsec_set_interface_mode() local
/external/u-boot/drivers/video/rockchip/
Drk_edp.c37 struct rk3288_edp *regs; member
44 static void rk_edp_init_refclk(struct rk3288_edp *regs) in rk_edp_init_refclk()
76 static void rk_edp_init_interrupt(struct rk3288_edp *regs) in rk_edp_init_interrupt()
96 static void rk_edp_enable_sw_function(struct rk3288_edp *regs) in rk_edp_enable_sw_function()
101 static bool rk_edp_get_pll_locked(struct rk3288_edp *regs) in rk_edp_get_pll_locked()
110 static int rk_edp_init_analog_func(struct rk3288_edp *regs) in rk_edp_init_analog_func()
135 static void rk_edp_init_aux(struct rk3288_edp *regs) in rk_edp_init_aux()
150 static int rk_edp_aux_enable(struct rk3288_edp *regs) in rk_edp_aux_enable()
164 static int rk_edp_is_aux_reply(struct rk3288_edp *regs) in rk_edp_is_aux_reply()
179 static int rk_edp_start_aux_transaction(struct rk3288_edp *regs) in rk_edp_start_aux_transaction()
[all …]
/external/u-boot/arch/riscv/lib/
Dinterrupts.c37 uint handle_trap(uint mcause, uint epc, struct pt_regs *regs) in handle_trap()
55 __attribute__((weak)) void external_interrupt(struct pt_regs *regs) in external_interrupt()
59 __attribute__((weak)) void timer_interrupt(struct pt_regs *regs) in timer_interrupt()
63 static void _exit_trap(int code, uint epc, struct pt_regs *regs) in _exit_trap()
/external/u-boot/drivers/net/
Dmvgbe.c69 struct mvgbe_registers *regs = dmvgbe->regs; in smi_reg_read() local
139 struct mvgbe_registers *regs = dmvgbe->regs; in smi_reg_write() local
208 static void set_access_control(struct mvgbe_registers *regs, in set_access_control()
238 static void set_dram_access(struct mvgbe_registers *regs) in set_dram_access()
290 static void port_init_mac_tables(struct mvgbe_registers *regs) in port_init_mac_tables()
320 static int port_uc_addr(struct mvgbe_registers *regs, u8 uc_nibble, in port_uc_addr()
360 static void port_uc_addr_set(struct mvgbe_registers *regs, u8 * p_addr) in port_uc_addr_set()
406 struct mvgbe_registers *regs = dmvgbe->regs; in mvgbe_init() local
484 struct mvgbe_registers *regs = dmvgbe->regs; in mvgbe_halt() local
512 struct mvgbe_registers *regs = dmvgbe->regs; in mvgbe_write_hwaddr() local
[all …]
/external/u-boot/drivers/mmc/
Dpxa_mmc_gen.c46 struct pxa_mmc_regs *regs; member
53 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_wait() local
72 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_stop_clock() local
101 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_start_cmd() local
144 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_cmd_done() local
186 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_do_read_xfer() local
222 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_do_write_xfer() local
265 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_request() local
318 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_set_ios() local
351 struct pxa_mmc_regs *regs = priv->regs; in pxa_mmc_init() local
/external/u-boot/drivers/adc/
Dexynos-adc.c14 struct exynos_adc_v2 *regs; member
21 struct exynos_adc_v2 *regs = priv->regs; in exynos_adc_channel_data() local
39 struct exynos_adc_v2 *regs = priv->regs; in exynos_adc_start_channel() local
60 struct exynos_adc_v2 *regs = priv->regs; in exynos_adc_stop() local
77 struct exynos_adc_v2 *regs = priv->regs; in exynos_adc_probe() local
/external/u-boot/drivers/gpio/
Dintel_broadwell_gpio.c30 struct pch_lp_gpio_regs *regs; member
39 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_request() local
61 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_direction_input() local
71 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_get_value() local
81 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_set_value() local
95 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_direction_output() local
106 struct pch_lp_gpio_regs *regs = priv->regs; in broadwell_gpio_get_function() local
/external/u-boot/drivers/misc/
Dmxc_ocotp.c157 static void wait_busy(struct ocotp_regs *regs, unsigned int delay_us) in wait_busy()
163 static void clear_error(struct ocotp_regs *regs) in clear_error()
168 static int prepare_access(struct ocotp_regs **regs, u32 bank, u32 word, in prepare_access()
196 static int finish_access(struct ocotp_regs *regs, const char *caller) in finish_access()
215 static int prepare_read(struct ocotp_regs **regs, u32 bank, u32 word, u32 *val, in prepare_read()
223 struct ocotp_regs *regs; in fuse_read() local
248 static void set_timing(struct ocotp_regs *regs) in set_timing()
266 static void set_timing(struct ocotp_regs *regs) in set_timing()
272 static void set_timing(struct ocotp_regs *regs) in set_timing()
295 static void setup_direct_access(struct ocotp_regs *regs, u32 bank, u32 word, in setup_direct_access()
[all …]

12345678910>>...20