| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3588s-tablet-single.dtsi | 102 status = "okay"; 106 status = "okay"; 123 status = "okay"; 165 status = "okay"; 308 status = "okay"; 318 status = "okay"; 323 status = "okay"; 327 status = "okay"; 346 status = "okay"; 376 status = "okay"; [all …]
|
| H A D | rk3566-evb-mipitest-v10.dtsi | 58 status = "disabled"; 62 status = "okay"; 66 status = "okay"; 70 status = "okay"; 74 status = "okay"; 111 status = "okay"; 148 status = "disabled"; 163 status = "okay"; 167 status = "disabled"; 171 status = "okay"; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mfd/ |
| H A D | dm355evm_msp.c | 187 int reg, status; in msp_gpio_get() local 190 status = dm355evm_msp_read(reg); in msp_gpio_get() 191 if (status < 0) in msp_gpio_get() 192 return status; in msp_gpio_get() 194 msp_led_cache = status; in msp_gpio_get() 195 return !!(status & MSP_GPIO_MASK(offset)); in msp_gpio_get() 244 int status; in add_child() local 254 status = platform_device_add_data(pdev, pdata, pdata_len); in add_child() 255 if (status < 0) { in add_child() 267 status = platform_device_add_resources(pdev, &r, 1); in add_child() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/media/dvb-core/ |
| H A D | dvb_ca_en50221.c | 459 int status; in dvb_ca_en50221_parse_attributes() local 467 status = dvb_ca_en50221_read_tuple(ca, slot, &address, &tuple_type, in dvb_ca_en50221_parse_attributes() 469 if (status < 0) in dvb_ca_en50221_parse_attributes() 470 return status; in dvb_ca_en50221_parse_attributes() 475 status = dvb_ca_en50221_read_tuple(ca, slot, &address, &tuple_type, in dvb_ca_en50221_parse_attributes() 477 if (status < 0) in dvb_ca_en50221_parse_attributes() 478 return status; in dvb_ca_en50221_parse_attributes() 483 status = dvb_ca_en50221_read_tuple(ca, slot, &address, &tuple_type, in dvb_ca_en50221_parse_attributes() 485 if (status < 0) in dvb_ca_en50221_parse_attributes() 486 return status; in dvb_ca_en50221_parse_attributes() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/host/ |
| H A D | uhci-hub.c | 81 status = uhci_readw(uhci, port_addr); \ 82 status &= ~(RWC_BITS|WZ_BITS); \ 83 status &= ~(x); \ 84 status |= RWC_BITS & (x); \ 85 uhci_writew(uhci, status, port_addr) 88 status = uhci_readw(uhci, port_addr); \ 89 status |= (x); \ 90 status &= ~(RWC_BITS|WZ_BITS); \ 91 uhci_writew(uhci, status, port_addr) 99 int status; in uhci_finish_suspend() local [all …]
|
| /OK3568_Linux_fs/u-boot/arch/arm/dts/ |
| H A D | rv1106-u-boot.dtsi | 25 status = "okay"; 34 status = "okay"; 39 status = "okay"; 44 status = "okay"; 49 status = "okay"; 54 status = "okay"; 59 status = "okay"; 64 status = "okay"; 69 status = "okay"; 94 status = "okay"; [all …]
|
| H A D | rv1126-bat-evb.dts | 26 status = "okay"; 38 status = "disabled"; 44 status = "okay"; 48 status = "disabled"; 52 status = "disabled"; 56 status = "disabled"; 60 status = "disabled"; 64 status = "disabled"; 68 status = "disabled"; 72 status = "disabled"; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/gadget/legacy/ |
| H A D | nokia.c | 151 int status = 0; in nokia_bind_config() local 176 status = PTR_ERR(f_acm); in nokia_bind_config() 182 status = PTR_ERR(f_ecm); in nokia_bind_config() 188 status = PTR_ERR(f_msg); in nokia_bind_config() 210 status = usb_add_function(c, f_acm); in nokia_bind_config() 211 if (status) in nokia_bind_config() 214 status = usb_add_function(c, f_ecm); in nokia_bind_config() 215 if (status) { in nokia_bind_config() 216 pr_debug("could not bind ecm config %d\n", status); in nokia_bind_config() 220 status = usb_add_function(c, f_msg); in nokia_bind_config() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/char/ipmi/ |
| H A D | ipmi_kcs_sm.c | 170 #define GET_STATUS_STATE(status) (((status) >> 6) & 0x03) argument 175 #define GET_STATUS_ATN(status) ((status) & 0x04) argument 176 #define GET_STATUS_IBF(status) ((status) & 0x02) argument 177 #define GET_STATUS_OBF(status) ((status) & 0x01) argument 214 static inline int check_ibf(struct si_sm_data *kcs, unsigned char status, in check_ibf() argument 217 if (GET_STATUS_IBF(status)) { in check_ibf() 230 static inline int check_obf(struct si_sm_data *kcs, unsigned char status, in check_obf() argument 233 if (!GET_STATUS_OBF(status)) { in check_obf() 246 static void clear_obf(struct si_sm_data *kcs, unsigned char status) in clear_obf() argument 248 if (GET_STATUS_OBF(status)) in clear_obf() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/msm/disp/dpu1/ |
| H A D | dpu_hw_top.c | 126 struct dpu_danger_safe_status *status) in dpu_hw_get_danger_status() argument 131 if (!mdp || !status) in dpu_hw_get_danger_status() 137 status->mdp = (value >> 0) & 0x3; in dpu_hw_get_danger_status() 138 status->sspp[SSPP_VIG0] = (value >> 4) & 0x3; in dpu_hw_get_danger_status() 139 status->sspp[SSPP_VIG1] = (value >> 6) & 0x3; in dpu_hw_get_danger_status() 140 status->sspp[SSPP_VIG2] = (value >> 8) & 0x3; in dpu_hw_get_danger_status() 141 status->sspp[SSPP_VIG3] = (value >> 10) & 0x3; in dpu_hw_get_danger_status() 142 status->sspp[SSPP_RGB0] = (value >> 12) & 0x3; in dpu_hw_get_danger_status() 143 status->sspp[SSPP_RGB1] = (value >> 14) & 0x3; in dpu_hw_get_danger_status() 144 status->sspp[SSPP_RGB2] = (value >> 16) & 0x3; in dpu_hw_get_danger_status() [all …]
|
| /OK3568_Linux_fs/u-boot/drivers/i2c/ |
| H A D | mvtwsi.c | 58 u32 status; member 70 u32 status; /* When reading */ member 265 int control, status; in twsi_wait() local 271 status = readl(&twsi->status); in twsi_wait() 272 if (status == expected_status) in twsi_wait() 277 control, status, expected_status); in twsi_wait() 281 status = readl(&twsi->status); in twsi_wait() 282 return mvtwsi_error(MVTWSI_ERROR_TIMEOUT, control, status, in twsi_wait() 350 int expected_status, status, control; in twsi_recv() local 360 status = twsi_wait(twsi, expected_status, tick); in twsi_recv() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rsi/ |
| H A D | rsi_91x_usb.c | 47 int status; in rsi_usb_card_write() local 56 status = usb_bulk_msg(dev->usbdev, in rsi_usb_card_write() 63 if (status < 0) { in rsi_usb_card_write() 65 "Card write failed with error code :%10d\n", status); in rsi_usb_card_write() 68 return status; in rsi_usb_card_write() 181 int status = -ENOMEM; in rsi_usb_reg_read() local 188 return status; in rsi_usb_reg_read() 190 status = usb_control_msg(usbdev, in rsi_usb_reg_read() 200 if (status < 0) { in rsi_usb_reg_read() 203 __func__, status); in rsi_usb_reg_read() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/acpi/acpica/ |
| H A D | hwesleep.c | 34 acpi_status status; in acpi_hw_execute_sleep_method() local 45 status = acpi_evaluate_object(NULL, method_pathname, &arg_list, NULL); in acpi_hw_execute_sleep_method() 46 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { in acpi_hw_execute_sleep_method() 47 ACPI_EXCEPTION((AE_INFO, status, "While executing method %s", in acpi_hw_execute_sleep_method() 70 acpi_status status; in acpi_hw_extended_sleep() local 85 status = acpi_write((u64)ACPI_X_WAKE_STATUS, in acpi_hw_extended_sleep() 87 if (ACPI_FAILURE(status)) { in acpi_hw_extended_sleep() 88 return_ACPI_STATUS(status); in acpi_hw_extended_sleep() 111 status = acpi_os_enter_sleep(sleep_state, sleep_control, 0); in acpi_hw_extended_sleep() 112 if (status == AE_CTRL_TERMINATE) { in acpi_hw_extended_sleep() [all …]
|
| H A D | evregion.c | 45 acpi_status status; in acpi_ev_initialize_op_regions() local 50 status = acpi_ut_acquire_mutex(ACPI_MTX_NAMESPACE); in acpi_ev_initialize_op_regions() 51 if (ACPI_FAILURE(status)) { in acpi_ev_initialize_op_regions() 52 return_ACPI_STATUS(status); in acpi_ev_initialize_op_regions() 73 return_ACPI_STATUS(status); in acpi_ev_initialize_op_regions() 107 acpi_status status; in acpi_ev_address_space_dispatch() local 171 status = region_setup(region_obj, ACPI_REGION_ACTIVATE, in acpi_ev_address_space_dispatch() 180 if (ACPI_FAILURE(status)) { in acpi_ev_address_space_dispatch() 181 ACPI_EXCEPTION((AE_INFO, status, in acpi_ev_address_space_dispatch() 186 return_ACPI_STATUS(status); in acpi_ev_address_space_dispatch() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/usb/serial/ |
| H A D | ti_usb_3410_5052.c | 523 int status; in ti_startup() local 561 status = ti_download_firmware(tdev); in ti_startup() 563 if (status != 0) in ti_startup() 572 status = -ENODEV; in ti_startup() 578 status = usb_driver_set_configuration(dev, TI_ACTIVE_CONFIG); in ti_startup() 579 status = status ? status : -ENODEV; in ti_startup() 586 status = -ENODEV; in ti_startup() 595 return status; in ti_startup() 652 int status; in ti_open() local 677 status = -EINVAL; in ti_open() [all …]
|
| /OK3568_Linux_fs/kernel/arch/mips/boot/dts/brcm/ |
| H A D | bcm97358svmb.dts | 23 status = "okay"; 27 status = "okay"; 31 status = "okay"; 35 status = "okay"; 39 status = "okay"; 43 status = "okay"; 47 status = "okay"; 51 status = "okay"; 55 status = "okay"; 59 status = "okay"; [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | rv1106-evb.dtsi | 36 status = "okay"; 40 status = "okay"; 44 status = "okay"; 48 status = "okay"; 52 status = "okay"; 56 status = "okay"; 60 status = "okay"; 64 status = "okay"; 68 status = "okay"; 72 status = "okay"; [all …]
|
| H A D | sun7i-a20-olimex-som204-evb.dts | 76 status = "okay"; 82 status = "okay"; 86 status = "okay"; 94 status = "okay"; 98 status = "okay"; 102 status = "okay"; 111 status = "okay"; 115 status = "okay"; 125 status = "okay"; 136 status = "okay"; [all …]
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/intel/ice/ |
| H A D | ice_sched.c | 106 enum ice_status status; in ice_aqc_send_sched_elem_cmd() local 112 status = ice_aq_send_cmd(hw, &desc, buf, buf_size, cd); in ice_aqc_send_sched_elem_cmd() 113 if (!status && elems_resp) in ice_aqc_send_sched_elem_cmd() 116 return status; in ice_aqc_send_sched_elem_cmd() 155 enum ice_status status; in ice_sched_add_node() local 176 status = ice_sched_query_elem(hw, le32_to_cpu(info->node_teid), &elem); in ice_sched_add_node() 177 if (status) in ice_sched_add_node() 178 return status; in ice_sched_add_node() 238 enum ice_status status; in ice_sched_remove_elems() local 251 status = ice_aq_delete_sched_elems(hw, 1, buf, buf_size, in ice_sched_remove_elems() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/ocrdma/ |
| H A D | ocrdma_hw.c | 194 static int ocrdma_get_mbx_errno(u32 status) in ocrdma_get_mbx_errno() argument 197 u8 mbox_status = (status & OCRDMA_MBX_RSP_STATUS_MASK) >> in ocrdma_get_mbx_errno() 199 u8 add_status = (status & OCRDMA_MBX_RSP_ASTATUS_MASK) >> in ocrdma_get_mbx_errno() 406 int status; in ocrdma_mbx_delete_q() local 426 status = be_roce_mcc_cmd(dev->nic_info.netdev, in ocrdma_mbx_delete_q() 428 if (!status) in ocrdma_mbx_delete_q() 430 return status; in ocrdma_mbx_delete_q() 435 int status; in ocrdma_mbx_create_eq() local 450 status = be_roce_mcc_cmd(dev->nic_info.netdev, cmd, sizeof(*cmd), NULL, in ocrdma_mbx_create_eq() 452 if (!status) { in ocrdma_mbx_create_eq() [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/include/ |
| H A D | gspi_ops.h | 122 #define GET_STATUS_PUB_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 24, 8) argument 123 #define GET_STATUS_HI_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 18, 6) argument 124 #define GET_STATUS_MID_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 12, 6) argument 125 #define GET_STATUS_LOW_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 6, 6) argument 126 #define GET_STATUS_HISR_HI6BIT(status) LE_BITS_TO_4BYTE(status, 0, 6) argument 129 #define GET_STATUS_HISR_MID8BIT(status) LE_BITS_TO_4BYTE(status + 4, 24, 8) argument 130 #define GET_STATUS_HISR_LOW8BIT(status) LE_BITS_TO_4BYTE(status + 4, 16, 8) argument 131 #define GET_STATUS_ERROR(status) LE_BITS_TO_4BYTE(status + 4, 17, 1) argument 132 #define GET_STATUS_INT(status) LE_BITS_TO_4BYTE(status + 4, 16, 1) argument 133 #define GET_STATUS_RX_LENGTH(status) LE_BITS_TO_4BYTE(status + 4, 0, 16) argument
|
| /OK3568_Linux_fs/kernel/arch/powerpc/boot/dts/fsl/ |
| H A D | mpc8572ds_camp_core1.dts | 22 status = "disabled"; 29 status = "disabled"; 34 status = "disabled"; 37 status = "disabled"; 40 status = "disabled"; 43 status = "disabled"; 46 status = "disabled"; 49 status = "disabled"; 52 status = "disabled"; 55 status = "disabled"; [all …]
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852bs/include/ |
| H A D | gspi_ops.h | 122 #define GET_STATUS_PUB_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 24, 8) argument 123 #define GET_STATUS_HI_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 18, 6) argument 124 #define GET_STATUS_MID_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 12, 6) argument 125 #define GET_STATUS_LOW_PAGE_NUM(status) LE_BITS_TO_4BYTE(status, 6, 6) argument 126 #define GET_STATUS_HISR_HI6BIT(status) LE_BITS_TO_4BYTE(status, 0, 6) argument 129 #define GET_STATUS_HISR_MID8BIT(status) LE_BITS_TO_4BYTE(status + 4, 24, 8) argument 130 #define GET_STATUS_HISR_LOW8BIT(status) LE_BITS_TO_4BYTE(status + 4, 16, 8) argument 131 #define GET_STATUS_ERROR(status) LE_BITS_TO_4BYTE(status + 4, 17, 1) argument 132 #define GET_STATUS_INT(status) LE_BITS_TO_4BYTE(status + 4, 16, 1) argument 133 #define GET_STATUS_RX_LENGTH(status) LE_BITS_TO_4BYTE(status + 4, 0, 16) argument
|
| /OK3568_Linux_fs/kernel/drivers/pci/pcie/ |
| H A D | dpc.c | 79 u16 status; in dpc_completed() local 81 pci_read_config_word(pdev, pdev->dpc_cap + PCI_EXP_DPC_STATUS, &status); in dpc_completed() 82 if ((status != 0xffff) && (status & PCI_EXP_DPC_STATUS_TRIGGER)) in dpc_completed() 129 u16 cap = pdev->dpc_cap, status; in dpc_wait_rp_inactive() local 131 pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status); in dpc_wait_rp_inactive() 132 while (status & PCI_EXP_DPC_RP_BUSY && in dpc_wait_rp_inactive() 135 pci_read_config_word(pdev, cap + PCI_EXP_DPC_STATUS, &status); in dpc_wait_rp_inactive() 137 if (status & PCI_EXP_DPC_RP_BUSY) { in dpc_wait_rp_inactive() 190 u32 status, mask, sev, syserr, exc, dw0, dw1, dw2, dw3, log, prefix; in dpc_process_rp_pio_error() local 193 pci_read_config_dword(pdev, cap + PCI_EXP_DPC_RP_PIO_STATUS, &status); in dpc_process_rp_pio_error() [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/runtime/cases/ |
| H A D | logrotate.py | 28 status, output = self.target.run('touch /var/log/wtmp') 30 self.assertEqual(status, 0, msg = msg) 32 status, output = self.target.run('mkdir /var/log//logrotate_dir') 34 self.assertEqual(status, 0, msg = msg) 36 …status, output = self.target.run('echo "create \n olddir /var/log//logrotate_dir \n include /etc/l… 38 self.assertEqual(status, 0, msg = msg) 42 status, _ = self.target.run('find /var/log//logrotate_dir -type f | grep wtmp.1') 44 self.assertEqual(status, 0, msg = msg) 49 … status, output = self.target.run('echo "oeqa logrotate test file" > /var/log/logrotate_testfile') 51 self.assertEqual(status, 0, msg = msg) [all …]
|