/linux-6.3-rc2/arch/x86/platform/ts5500/ |
A D | ts5500.c | 124 sbc->name = "TS-5500"; in ts5500_detect_config() 126 sbc->name = "TS-5400"; 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() 140 sbc->itr = tmp & TS5500_ITR; in ts5500_detect_config() 143 sbc->jumpers = tmp & ~TS5500_LED; in ts5500_detect_config() 286 struct ts5500_sbc *sbc; in ts5500_init() local 303 if (!sbc) { in ts5500_init() 308 err = ts5500_detect_config(sbc); in ts5500_init() [all …]
|
/linux-6.3-rc2/include/trace/events/ |
A 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-6.3-rc2/Documentation/devicetree/bindings/arm/aspeed/ |
A D | aspeed,sbc.yaml | 5 $id: "http://devicetree.org/schemas/arm/aspeed/aspeed,sbc.yaml#" 21 - const: aspeed,ast2600-sbc 34 sbc: secure-boot-controller@1e6f2000 { 35 compatible = "aspeed,ast2600-sbc";
|
/linux-6.3-rc2/drivers/mmc/host/ |
A D | litex_mmc.c | 343 struct mmc_command *sbc = mrq->sbc; in litex_mmc_request() local 360 if (sbc) { in litex_mmc_request() 361 sbc->error = litex_mmc_send_cmd(host, sbc->opcode, sbc->arg, in litex_mmc_request() 362 litex_mmc_response_len(sbc), in litex_mmc_request() 364 if (sbc->error) { in litex_mmc_request() 410 if (stop && (cmd->error || !sbc)) { in litex_mmc_request()
|
A 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()
|
A D | omap_hsmmc.c | 789 host->mrq->sbc) { in omap_hsmmc_start_command() 791 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg); in omap_hsmmc_start_command() 861 if (data->stop && (data->error || !host->mrq->sbc)) in omap_hsmmc_xfer_done() 873 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) && in omap_hsmmc_cmd_done() 874 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) { in omap_hsmmc_cmd_done() 1043 if (!(ac12 & ACNE) && host->mrq->sbc) { in omap_hsmmc_do_irq() 1049 host->mrq->sbc->error = error; in omap_hsmmc_do_irq() 1442 if (req->sbc && !(host->flags & AUTO_CMD23)) { in omap_hsmmc_request() 1443 omap_hsmmc_start_command(host, req->sbc, NULL); in omap_hsmmc_request()
|
A D | tmio_mmc_core.c | 325 (cmd->opcode == SD_IO_RW_EXTENDED || host->mrq->sbc)) in tmio_mmc_start_command() 497 if (stop && !host->mrq->sbc) { in tmio_mmc_do_data_irq() 768 if (mrq->sbc && host->cmd != mrq->sbc) { in tmio_process_mrq() 769 cmd = mrq->sbc; in tmio_process_mrq() 836 if (host->cmd != mrq->sbc) { in tmio_mmc_finish_request()
|
/linux-6.3-rc2/drivers/mmc/core/ |
A 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() 270 mrq->sbc->arg, mrq->sbc->flags); in mmc_mrq_pr_debug() 308 if (mrq->sbc) { in mmc_mrq_prep() 309 mrq->sbc->error = 0; in mmc_mrq_prep() [all …]
|
A D | block.c | 469 struct mmc_command cmd = {}, sbc = {}; in __mmc_blk_ioctl_cmd() local 535 sbc.opcode = MMC_SET_BLOCK_COUNT; in __mmc_blk_ioctl_cmd() 542 sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; in __mmc_blk_ioctl_cmd() 543 mrq.sbc = &sbc; in __mmc_blk_ioctl_cmd() 1655 brq->sbc.opcode = MMC_SET_BLOCK_COUNT; in mmc_blk_rw_rq_prep() 1656 brq->sbc.arg = brq->data.blocks | in mmc_blk_rw_rq_prep() 1659 brq->sbc.flags = MMC_RSP_R1 | MMC_CMD_AC; in mmc_blk_rw_rq_prep() 1660 brq->mrq.sbc = &brq->sbc; in mmc_blk_rw_rq_prep() 1757 return !!brq->mrq.sbc; in mmc_blk_oor_valid() 1789 return !brq->sbc.error && !brq->cmd.error && in mmc_blk_cmd_started() [all …]
|
A D | queue.h | 42 struct mmc_command sbc; member
|
A D | mmc_test.c | 194 if (!mrq->sbc || !mmc_host_cmd23(card->host) || in mmc_test_prepare_sbc() 197 mrq->sbc = NULL; in mmc_test_prepare_sbc() 201 mrq->sbc->opcode = MMC_SET_BLOCK_COUNT; in mmc_test_prepare_sbc() 202 mrq->sbc->arg = blocks; in mmc_test_prepare_sbc() 203 mrq->sbc->flags = MMC_RSP_R1 | MMC_CMD_AC; in mmc_test_prepare_sbc() 701 if (mrq->sbc && mrq->sbc->error) in mmc_test_check_result() 702 ret = mrq->sbc->error; in mmc_test_check_result() 756 struct mmc_command sbc; member 2373 mrq->sbc = &rq->sbc; in mmc_test_ongoing_transfer() 2379 if (use_sbc && t->blocks > 1 && !mrq->sbc) { in mmc_test_ongoing_transfer() [all …]
|
/linux-6.3-rc2/arch/arm/boot/dts/ |
A D | qcom-apq8016-sbc.dts | 2 #include "arm64/qcom/apq8016-sbc.dts"
|
A D | imx6q-ds.dts | 16 compatible = "ds,imx6q-sbc", "fsl,imx6q";
|
A D | qcom-apq8084-ifc6540.dts | 7 compatible = "qcom,apq8084-sbc", "qcom,apq8084";
|
A D | omap3-sbc-t3730.dts | 11 …compatible = "compulab,omap3-sbc-t3730", "compulab,omap3-cm-t3730", "ti,omap3630", "ti,omap36xx", …
|
A D | omap3-sbc-t3530.dts | 11 …compatible = "compulab,omap3-sbc-t3530", "compulab,omap3-cm-t3530", "ti,omap3430", "ti,omap34xx", …
|
A D | omap5-sbc-t54.dts | 10 compatible = "compulab,omap5-sbc-t54", "compulab,omap5-cm-t54", "ti,omap5";
|
A 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";
|
A D | imx7d-sbc-imx7.dts | 17 compatible = "compulab,sbc-imx7", "compulab,cl-som-imx7", "fsl,imx7d";
|
A D | omap3-sbc-t3517.dts | 11 compatible = "compulab,omap3-sbc-t3517", "compulab,omap3-cm-t3517", "ti,am3517", "ti,omap3";
|
/linux-6.3-rc2/sound/soc/qcom/ |
A D | Makefile | 23 snd-soc-apq8016-sbc-objs := apq8016_sbc.o 34 obj-$(CONFIG_SND_SOC_APQ8016_SBC) += snd-soc-apq8016-sbc.o
|
/linux-6.3-rc2/arch/arm64/boot/dts/qcom/ |
A D | apq8016-sbc.dts | 18 compatible = "qcom,apq8016-sbc", "qcom,apq8016"; 117 label = "apq8016-sbc:green:user1"; 126 label = "apq8016-sbc:green:user2"; 135 label = "apq8016-sbc:green:user3"; 144 label = "apq8016-sbc:green:user4"; 153 label = "apq8016-sbc:yellow:wlan"; 162 label = "apq8016-sbc:blue:bt";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/sound/ |
A D | qcom,sm8250.yaml | 25 - qcom,apq8016-sbc-sndcard 121 - qcom,apq8016-sbc-sndcard 228 compatible = "qcom,apq8016-sbc-sndcard";
|
/linux-6.3-rc2/Documentation/devicetree/bindings/arm/omap/ |
A D | omap.txt | 165 compatible = "compulab,sbc-t335", "compulab,cm-t335", "ti,am33xx" 183 compatible = "compulab,am437x-sbc-t43", "compulab,am437x-cm-t43", "ti,am4372", "ti,am43" 198 …compatible = "compulab,sbc-am57x", "compulab,cl-som-am57x", "ti,am5728", "ti,dra742", "ti,dra74", …
|
/linux-6.3-rc2/include/linux/mmc/ |
A D | core.h | 145 struct mmc_command *sbc; /* SET_BLOCK_COUNT for multiblock */ member
|