Lines Matching refs:qtest_writel

66     qtest_writel(qts, NVIC_ICPR1, (1 << n));  in clear_nvic_pending()
107 qtest_writel(qts, USART1_BASE_ADDR + A_TDR, in[i]); in usart_send_string()
119 qtest_writel(qts, (RCC_BASE_ADDR + A_CR), R_CR_MSION_MASK); in init_clocks()
122 qtest_writel(qts, (RCC_BASE_ADDR + A_CFGR), 0); in init_clocks()
132 qtest_writel(qts, (RCC_BASE_ADDR + A_PLLCFGR), R_PLLCFGR_PLLREN_MASK | in init_clocks()
139 qtest_writel(qts, (RCC_BASE_ADDR + A_CR), value | R_CR_PLLON_MASK); in init_clocks()
142 qtest_writel(qts, (RCC_BASE_ADDR + A_CFGR), 0); in init_clocks()
145 qtest_writel(qts, (RCC_BASE_ADDR + A_CCIPR), 0); in init_clocks()
149 qtest_writel(qts, (RCC_BASE_ADDR + A_CFGR), (value & ~R_CFGR_SW_MASK) | in init_clocks()
153 qtest_writel(qts, (RCC_BASE_ADDR + A_APB2ENR), R_APB2ENR_SYSCFGEN_MASK); in init_clocks()
156 qtest_writel(qts, (RCC_BASE_ADDR + A_AHB2ENR), R_AHB2ENR_GPIOBEN_MASK); in init_clocks()
160 qtest_writel(qts, (RCC_BASE_ADDR + A_APB2ENR), in init_clocks()
166 qtest_writel(qts, (RCC_BASE_ADDR + A_CCIPR), 0); in init_clocks()
169 qtest_writel(qts, (RCC_BASE_ADDR + A_APB2RSTR), 1 << 14); in init_clocks()
170 qtest_writel(qts, (RCC_BASE_ADDR + A_APB2RSTR), 0); in init_clocks()
184 qtest_writel(qts, (USART1_BASE_ADDR + A_BRR), 0x2B7); in init_uart()
193 qtest_writel(qts, (USART1_BASE_ADDR + A_CR1), cr1); in init_uart()
196 qtest_writel(qts, (USART1_BASE_ADDR + A_CR1), in init_uart()
205 qtest_writel(qts, USART1_BASE_ADDR + A_TDR, 0xFFFFFFFF); in test_write_read()
229 qtest_writel(qts, USART1_BASE_ADDR + A_CR1, cr1); in test_receive_char()
251 qtest_writel(qts, USART1_BASE_ADDR + A_TDR, 'c'); in test_send_char()
259 qtest_writel(qts, USART1_BASE_ADDR + A_CR1, cr1); in test_send_char()
260 qtest_writel(qts, USART1_BASE_ADDR + A_TDR, 'd'); in test_send_char()
315 qtest_writel(qts, (USART1_BASE_ADDR + A_CR1), in test_ack()
324 qtest_writel(qts, (USART1_BASE_ADDR + A_CR1), in test_ack()
339 qtest_writel(qts, rcc_reg, qtest_readl(qts, rcc_reg) | (0x1 << reg_offset)); in check_clock()