| /OK3568_Linux_fs/kernel/drivers/dma/ |
| H A D | sun6i-dma.c | 1236 struct sun6i_dma_dev *sdc; in sun6i_dma_probe() local 1240 sdc = devm_kzalloc(&pdev->dev, sizeof(*sdc), GFP_KERNEL); in sun6i_dma_probe() 1241 if (!sdc) in sun6i_dma_probe() 1244 sdc->cfg = of_device_get_match_data(&pdev->dev); in sun6i_dma_probe() 1245 if (!sdc->cfg) in sun6i_dma_probe() 1249 sdc->base = devm_ioremap_resource(&pdev->dev, res); in sun6i_dma_probe() 1250 if (IS_ERR(sdc->base)) in sun6i_dma_probe() 1251 return PTR_ERR(sdc->base); in sun6i_dma_probe() 1253 sdc->irq = platform_get_irq(pdev, 0); in sun6i_dma_probe() 1254 if (sdc->irq < 0) in sun6i_dma_probe() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/mmc/host/ |
| H A D | sdhci-of-aspeed.c | 36 static void aspeed_sdc_configure_8bit_mode(struct aspeed_sdc *sdc, in aspeed_sdc_configure_8bit_mode() argument 43 spin_lock(&sdc->lock); in aspeed_sdc_configure_8bit_mode() 44 info = readl(sdc->regs + ASPEED_SDC_INFO); in aspeed_sdc_configure_8bit_mode() 49 writel(info, sdc->regs + ASPEED_SDC_INFO); in aspeed_sdc_configure_8bit_mode() 50 spin_unlock(&sdc->lock); in aspeed_sdc_configure_8bit_mode() 254 struct aspeed_sdc *sdc; in aspeed_sdc_probe() local 257 sdc = devm_kzalloc(&pdev->dev, sizeof(*sdc), GFP_KERNEL); in aspeed_sdc_probe() 258 if (!sdc) in aspeed_sdc_probe() 261 spin_lock_init(&sdc->lock); in aspeed_sdc_probe() 263 sdc->clk = devm_clk_get(&pdev->dev, NULL); in aspeed_sdc_probe() [all …]
|
| /OK3568_Linux_fs/kernel/fs/xfs/scrub/ |
| H A D | dir.c | 45 struct xchk_dir_ctx *sdc, in xchk_dir_check_ftype() argument 50 struct xfs_mount *mp = sdc->sc->mp; in xchk_dir_check_ftype() 57 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, in xchk_dir_check_ftype() 70 error = xfs_iget(mp, sdc->sc->tp, inum, 0, 0, &ip); in xchk_dir_check_ftype() 71 if (!xchk_fblock_xref_process_error(sdc->sc, XFS_DATA_FORK, offset, in xchk_dir_check_ftype() 79 xchk_fblock_set_corrupt(sdc->sc, XFS_DATA_FORK, offset); in xchk_dir_check_ftype() 104 struct xchk_dir_ctx *sdc; in xchk_dir_actor() local 110 sdc = container_of(dir_iter, struct xchk_dir_ctx, dir_iter); in xchk_dir_actor() 111 ip = sdc->sc->ip; in xchk_dir_actor() 116 if (xchk_should_terminate(sdc->sc, &error)) in xchk_dir_actor() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/input/serio/ |
| H A D | hp_sdc.c | 37 * hp_sdc_put does all writing to the SDC. ISR can run on a different 41 * All data coming back from the SDC is sent via interrupt and can be read 43 * The problem is with output, due to the slow clock speed of the SDC 52 * to reading data back from the SDC, but otherwise will not touch the 57 * to minimize the amount of IO needed to the SDC. However these values 89 #define PREFIX "HP SDC: " 92 MODULE_DESCRIPTION("HP i8042-based SDC Driver"); 109 MODULE_PARM_DESC(no_hpsdc, "Do not enable HP SDC driver."); 227 /* For now we are ignoring these until we get the SDC to behave. */ in hp_sdc_isr() 261 printk(KERN_INFO PREFIX "HP SDC reports successful PUP.\n"); in hp_sdc_isr() [all …]
|
| H A D | hp_sdc_mlc.c | 45 #define PREFIX "HP SDC MLC: " 111 printk(KERN_WARNING PREFIX "Bastard SDC reconfigured loop!\n"); in hp_sdc_mlc_isr() 124 printk(KERN_WARNING PREFIX "Bastard SDC decided to reconfigure loop!\n"); in hp_sdc_mlc_isr() 279 * and data when using SDC, we just send the data. in hp_sdc_mlc_out()
|
| /OK3568_Linux_fs/yocto/poky/documentation/profile-manual/ |
| H A D | usage.rst | 2250 root@crownbay:~# blktrace /dev/sdc 2254 …root@crownbay:/media/sdc# rm linux-2.6.19.2.tar.bz2; wget &YOCTO_DL_URL;/mirror/sources/linux-2.6.… 2263 ^C=== sdc === 2274 -rw-r--r-- 1 root root 339938 Oct 27 22:40 sdc.blktrace.0 2275 -rw-r--r-- 1 root root 75753 Oct 27 22:40 sdc.blktrace.1 2281 root@crownbay:~# blkparse sdc 2283 8,32 1 1 0.000000000 1225 Q WS 3417048 + 8 [jbd2/sdc-8] 2284 8,32 1 2 0.000025213 1225 G WS 3417048 + 8 [jbd2/sdc-8] 2285 8,32 1 3 0.000033384 1225 P N [jbd2/sdc-8] 2286 8,32 1 4 0.000043301 1225 I WS 3417048 + 8 [jbd2/sdc-8] [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/device-mapper/ |
| H A D | log-writes.rst | 107 TABLE="0 $(blockdev --getsz /dev/sdb) log-writes /dev/sdb /dev/sdc" 119 replay-log --log /dev/sdc --replay /dev/sdb --end-mark fsync 127 TABLE="0 $(blockdev --getsz /dev/sdb) log-writes /dev/sdb /dev/sdc" 138 replay-log --log /dev/sdc --replay /dev/sdb --end-mark mkfs 140 replay-log --log /dev/sdc --replay /dev/sdb --start-mark mkfs \
|
| /OK3568_Linux_fs/kernel/arch/powerpc/platforms/pasemi/ |
| H A D | setup.c | 38 /* SDC reset register, must be pre-mapped at reset time */ 150 /* Remap SDC register for doing reset */ in pas_setup_arch() 341 pr_err("Signalled by SDC\n"); in pas_machine_check_handler() 401 { .type = "sdc", }, 404 { .compatible = "pasemi,sdc", }, 410 /* Publish OF platform devices for SDC and other non-PCI devices */ in pasemi_publish_devices()
|
| /OK3568_Linux_fs/u-boot/doc/ |
| H A D | README.rockchip | 97 To write an image that boots from an SD card (assumed to be /dev/sdc): 101 sudo dd if=out of=/dev/sdc seek=64 && \ 102 sudo dd if=firefly-rk3288/u-boot-dtb.img of=/dev/sdc seek=16384 140 sudo dd if=out of=/dev/sdc seek=64 147 sudo dd if=out of=/dev/sdc seek=64
|
| /OK3568_Linux_fs/kernel/drivers/cpufreq/ |
| H A D | pasemi-cpufreq.c | 37 /* Offset of ASR registers from SDC base */ 149 dn = of_find_compatible_node(NULL, NULL, "1682m-sdc"); in pas_cpufreq_cpu_init() 152 "pasemi,pwrficient-sdc"); in pas_cpufreq_cpu_init()
|
| /OK3568_Linux_fs/kernel/drivers/input/misc/ |
| H A D | hp_sdc_rtc.c | 2 * HP i8042 SDC + MSM-58321 BBRTC driver. 51 MODULE_DESCRIPTION("HP i8042 SDC + MSM-58321 RTC Driver"); 363 printk(KERN_INFO "HP i8042 SDC + MSM-58321 RTC support loaded " in hp_sdc_rtc_init() 373 printk(KERN_INFO "HP i8042 SDC + MSM-58321 RTC support unloaded\n"); in hp_sdc_rtc_exit()
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/pinctrl/ |
| H A D | qcom,msm8960-pinctrl.txt | 144 Not valid for sdc pins. 151 Not valid for sdc pins.
|
| H A D | qcom,msm8976-pinctrl.txt | 144 Not valid for sdc pins. 151 Not valid for sdc pins.
|
| H A D | qcom,sdm845-pinctrl.txt | 138 Not valid for sdc pins. 145 Not valid for sdc pins.
|
| H A D | qcom,apq8084-pinctrl.txt | 142 Not valid for sdc pins. 149 Not valid for sdc pins.
|
| H A D | qcom,sm8150-pinctrl.txt | 159 Not valid for sdc pins. 166 Not valid for sdc pins.
|
| H A D | qcom,msm8994-pinctrl.txt | 148 Not valid for sdc pins. 155 Not valid for sdc pins.
|
| H A D | qcom,msm8998-pinctrl.txt | 162 Not valid for sdc pins. 169 Not valid for sdc pins.
|
| H A D | qcom,qcs404-pinctrl.txt | 170 Not valid for sdc pins. 177 Not valid for sdc pins.
|
| H A D | qcom,msm8916-pinctrl.txt | 150 Not valid for sdc pins. 157 Not valid for sdc pins.
|
| H A D | qcom,sc7180-pinctrl.txt | 157 Not valid for sdc pins. 164 Not valid for sdc pins.
|
| H A D | qcom,sdm660-pinctrl.txt | 162 Not valid for sdc pins. 169 Not valid for sdc pins.
|
| H A D | qcom,msm8996-pinctrl.txt | 169 Not valid for sdc pins. 176 Not valid for sdc pins.
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/panfrost/ |
| H A D | panfrost_issues.h | 50 /* Change in RMUs in use causes problems related with the core's SDC */ 64 /* RA DCD load request to SDC returns invalid load ignore causing
|
| /OK3568_Linux_fs/buildroot/system/ |
| H A D | device_table_dev.txt | 92 #/dev/sdc b 640 0 0 8 32 0 0 - 93 #/dev/sdc b 640 0 0 8 33 1 1 15
|