/Linux-v5.10/arch/x86/platform/ts5500/ |
D | ts5500.c | 114 static int __init ts5500_detect_config(struct ts5500_sbc *sbc) in ts5500_detect_config() argument 122 sbc->id = inb(TS5500_PRODUCT_CODE_ADDR); in ts5500_detect_config() 123 if (sbc->id == TS5500_PRODUCT_CODE) { in ts5500_detect_config() 124 sbc->name = "TS-5500"; in ts5500_detect_config() 125 } else if (sbc->id == TS5400_PRODUCT_CODE) { in ts5500_detect_config() 126 sbc->name = "TS-5400"; in ts5500_detect_config() 128 pr_err("ts5500: unknown product code 0x%x\n", sbc->id); in ts5500_detect_config() 134 sbc->sram = tmp & TS5500_SRAM; in ts5500_detect_config() 135 sbc->rs485 = tmp & TS5500_RS485; in ts5500_detect_config() 136 sbc->adc = tmp & TS5500_ADC; in ts5500_detect_config() [all …]
|
/Linux-v5.10/include/trace/events/ |
D | mmc.h | 56 __entry->sbc_opcode = mrq->sbc ? mrq->sbc->opcode : 0; 57 __entry->sbc_arg = mrq->sbc ? mrq->sbc->arg : 0; 58 __entry->sbc_flags = mrq->sbc ? mrq->sbc->flags : 0; 59 __entry->sbc_retries = mrq->sbc ? mrq->sbc->retries : 0; 143 __entry->sbc_opcode = mrq->sbc ? mrq->sbc->opcode : 0; 144 __entry->sbc_err = mrq->sbc ? mrq->sbc->error : 0; 145 __entry->sbc_resp[0] = mrq->sbc ? mrq->sbc->resp[0] : 0; 146 __entry->sbc_resp[1] = mrq->sbc ? mrq->sbc->resp[1] : 0; 147 __entry->sbc_resp[2] = mrq->sbc ? mrq->sbc->resp[2] : 0; 148 __entry->sbc_resp[3] = mrq->sbc ? mrq->sbc->resp[3] : 0; [all …]
|
/Linux-v5.10/arch/arm64/boot/dts/qcom/ |
D | apq8016-sbc.dts | 8 #include "apq8016-sbc.dtsi" 12 compatible = "qcom,apq8016-sbc", "qcom,apq8016", "qcom,sbc";
|
D | apq8096-db820c.dts | 12 compatible = "arrow,apq8096-db820c", "qcom,apq8096-sbc", "qcom,apq8096";
|
D | apq8016-sbc.dtsi | 113 label = "apq8016-sbc:green:user1"; 120 label = "apq8016-sbc:green:user2"; 127 label = "apq8016-sbc:green:user3"; 134 label = "apq8016-sbc:green:user4"; 142 label = "apq8016-sbc:yellow:wlan"; 149 label = "apq8016-sbc:blue:bt";
|
/Linux-v5.10/sound/soc/qcom/ |
D | Makefile | 19 snd-soc-apq8016-sbc-objs := apq8016_sbc.o 25 obj-$(CONFIG_SND_SOC_APQ8016_SBC) += snd-soc-apq8016-sbc.o
|
/Linux-v5.10/drivers/mmc/core/ |
D | core.c | 147 (err == -EILSEQ || (mrq->sbc && mrq->sbc->error == -EILSEQ) || in mmc_request_done() 179 if (mrq->sbc) { in mmc_request_done() 181 mmc_hostname(host), mrq->sbc->opcode, in mmc_request_done() 182 mrq->sbc->error, in mmc_request_done() 183 mrq->sbc->resp[0], mrq->sbc->resp[1], in mmc_request_done() 184 mrq->sbc->resp[2], mrq->sbc->resp[3]); in mmc_request_done() 267 if (mrq->sbc) { in mmc_mrq_pr_debug() 269 mmc_hostname(host), mrq->sbc->opcode, in mmc_mrq_pr_debug() 270 mrq->sbc->arg, mrq->sbc->flags); in mmc_mrq_pr_debug() 308 if (mrq->sbc) { in mmc_mrq_prep() [all …]
|
D | block.c | 451 struct mmc_command cmd = {}, sbc = {}; in __mmc_blk_ioctl_cmd() local 528 sbc.opcode = MMC_SET_BLOCK_COUNT; in __mmc_blk_ioctl_cmd() 534 sbc.arg = data.blocks | (idata->ic.write_flag & BIT(31)); in __mmc_blk_ioctl_cmd() 535 sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; in __mmc_blk_ioctl_cmd() 536 mrq.sbc = &sbc; in __mmc_blk_ioctl_cmd() 1223 oor_with_open_end = val & R1_OUT_OF_RANGE && !brq->mrq.sbc; in mmc_blk_eval_resp_error() 1573 brq->sbc.opcode = MMC_SET_BLOCK_COUNT; in mmc_blk_rw_rq_prep() 1574 brq->sbc.arg = brq->data.blocks | in mmc_blk_rw_rq_prep() 1577 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; in mmc_blk_rw_rq_prep() 1578 brq->mrq.sbc = &brq->sbc; in mmc_blk_rw_rq_prep() [all …]
|
D | queue.h | 42 struct mmc_command sbc; member
|
D | mmc_test.c | 195 if (!mrq->sbc || !mmc_host_cmd23(card->host) || in mmc_test_prepare_sbc() 198 mrq->sbc = NULL; in mmc_test_prepare_sbc() 202 mrq->sbc->opcode = MMC_SET_BLOCK_COUNT; in mmc_test_prepare_sbc() 203 mrq->sbc->arg = blocks; in mmc_test_prepare_sbc() 204 mrq->sbc->flags = MMC_RSP_R1 | MMC_CMD_AC; in mmc_test_prepare_sbc() 716 if (mrq->sbc && mrq->sbc->error) in mmc_test_check_result() 717 ret = mrq->sbc->error; in mmc_test_check_result() 771 struct mmc_command sbc; member 2394 mrq->sbc = &rq->sbc; in mmc_test_ongoing_transfer() 2400 if (use_sbc && t->blocks > 1 && !mrq->sbc) { in mmc_test_ongoing_transfer() [all …]
|
/Linux-v5.10/Documentation/devicetree/bindings/sound/ |
D | qcom,apq8016-sbc.txt | 7 - compatible : "qcom,apq8016-sbc-sndcard" 59 compatible = "qcom,apq8016-sbc-sndcard";
|
/Linux-v5.10/arch/arm/boot/dts/ |
D | qcom-apq8084-ifc6540.dts | 7 compatible = "qcom,apq8084-sbc", "qcom,apq8084";
|
D | omap3-sbc-t3730.dts | 11 …compatible = "compulab,omap3-sbc-t3730", "compulab,omap3-cm-t3730", "ti,omap3630", "ti,omap36xx", …
|
D | omap3-sbc-t3530.dts | 11 …compatible = "compulab,omap3-sbc-t3530", "compulab,omap3-cm-t3530", "ti,omap3430", "ti,omap34xx", …
|
D | omap5-sbc-t54.dts | 10 compatible = "compulab,omap5-sbc-t54", "compulab,omap5-cm-t54", "ti,omap5";
|
D | am335x-sbc-t335.dts | 3 * am335x-sbc-t335.dts - Device Tree file for Compulab SBC-T335 12 compatible = "compulab,sbc-t335", "compulab,cm-t335", "ti,am33xx";
|
D | imx7d-sbc-imx7.dts | 17 compatible = "compulab,sbc-imx7", "compulab,cl-som-imx7", "fsl,imx7d";
|
D | omap3-sbc-t3517.dts | 11 compatible = "compulab,omap3-sbc-t3517", "compulab,omap3-cm-t3517", "ti,am3517", "ti,omap3";
|
/Linux-v5.10/drivers/mmc/host/ |
D | mxs-mmc.c | 142 if (cmd == mrq->sbc) { in mxs_mmc_request_done() 159 if (data->stop && (data->error || !mrq->sbc)) { in mxs_mmc_request_done() 489 if (mrq->sbc) in mxs_mmc_request() 490 mxs_mmc_start_cmd(host, mrq->sbc); in mxs_mmc_request()
|
D | omap_hsmmc.c | 794 host->mrq->sbc) { in omap_hsmmc_start_command() 796 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg); in omap_hsmmc_start_command() 866 if (data->stop && (data->error || !host->mrq->sbc)) in omap_hsmmc_xfer_done() 878 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) && in omap_hsmmc_cmd_done() 879 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) { in omap_hsmmc_cmd_done() 1048 if (!(ac12 & ACNE) && host->mrq->sbc) { in omap_hsmmc_do_irq() 1054 host->mrq->sbc->error = error; in omap_hsmmc_do_irq() 1447 if (req->sbc && !(host->flags & AUTO_CMD23)) { in omap_hsmmc_request() 1448 omap_hsmmc_start_command(host, req->sbc, NULL); in omap_hsmmc_request()
|
D | tmio_mmc_core.c | 282 (cmd->opcode == SD_IO_RW_EXTENDED || host->mrq->sbc)) in tmio_mmc_start_command() 455 if (stop && !host->mrq->sbc) { in tmio_mmc_do_data_irq() 721 if (mrq->sbc && host->cmd != mrq->sbc) { in tmio_process_mrq() 722 cmd = mrq->sbc; in tmio_process_mrq() 789 if (host->cmd != mrq->sbc) { in tmio_mmc_finish_request()
|
D | mtk-sd.c | 999 if (mmc_card_mmc(mmc->card) && mrq->sbc && in msdc_cmd_prepare_raw_cmd() 1000 !(mrq->sbc->arg & 0xFFFF0000)) in msdc_cmd_prepare_raw_cmd() 1134 if (mrq->sbc && cmd == mrq->cmd && in msdc_cmd_done() 1137 msdc_auto_cmd_done(host, events, mrq->sbc); in msdc_cmd_done() 1139 sbc_error = mrq->sbc && mrq->sbc->error; in msdc_cmd_done() 1268 (mrq->sbc && mrq->sbc->error)) in msdc_cmd_next() 1270 else if (cmd == mrq->sbc) in msdc_cmd_next() 1293 if (mrq->sbc && (!mmc_card_mmc(mmc->card) || in msdc_ops_request() 1294 (mrq->sbc->arg & 0xFFFF0000))) in msdc_ops_request() 1295 msdc_start_command(host, mrq, mrq->sbc); in msdc_ops_request() [all …]
|
D | bcm2835.c | 213 bcm2835_dumpcmd(host, mrq->sbc, "sbc"); in bcm2835_dumpregs() 800 if (cmd == host->mrq->sbc) { in bcm2835_finish_command() 1167 if (mrq->sbc) in bcm2835_request() 1168 mrq->sbc->error = 0; in bcm2835_request() 1213 host->use_sbc = !!mrq->sbc && host->mrq->data && in bcm2835_request() 1216 if (bcm2835_send_command(host, mrq->sbc)) { in bcm2835_request()
|
/Linux-v5.10/include/linux/mmc/ |
D | core.h | 145 struct mmc_command *sbc; /* SET_BLOCK_COUNT for multiblock */ member
|
/Linux-v5.10/Documentation/devicetree/bindings/arm/omap/ |
D | omap.txt | 162 compatible = "compulab,sbc-t335", "compulab,cm-t335", "ti,am33xx" 180 compatible = "compulab,am437x-sbc-t43", "compulab,am437x-cm-t43", "ti,am4372", "ti,am43" 195 …compatible = "compulab,sbc-am57x", "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", …
|