/Linux-v6.1/arch/riscv/kernel/ |
D | fpu.S | 28 fsd f0, TASK_THREAD_F0_F0(a0) 29 fsd f1, TASK_THREAD_F1_F0(a0) 30 fsd f2, TASK_THREAD_F2_F0(a0) 31 fsd f3, TASK_THREAD_F3_F0(a0) 32 fsd f4, TASK_THREAD_F4_F0(a0) 33 fsd f5, TASK_THREAD_F5_F0(a0) 34 fsd f6, TASK_THREAD_F6_F0(a0) 35 fsd f7, TASK_THREAD_F7_F0(a0) 36 fsd f8, TASK_THREAD_F8_F0(a0) 37 fsd f9, TASK_THREAD_F9_F0(a0) [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/clock/ |
D | tesla,fsd-clock.yaml | 4 $id: http://devicetree.org/schemas/clock/tesla,fsd-clock.yaml# 7 title: Tesla FSD (Full Self-Driving) SoC clock controller 11 - linux-fsd@tesla.com 14 FSD clock controller consist of several clock management unit 19 'dt-bindings/clock/fsd-clk.h' header. 24 - tesla,fsd-clock-cmu 25 - tesla,fsd-clock-imem 26 - tesla,fsd-clock-peric 27 - tesla,fsd-clock-fsys0 28 - tesla,fsd-clock-fsys1 [all …]
|
/Linux-v6.1/arch/riscv/kvm/ |
D | vcpu_switch.S | 287 fsd f0, KVM_ARCH_FP_D_F0(a0) 288 fsd f1, KVM_ARCH_FP_D_F1(a0) 289 fsd f2, KVM_ARCH_FP_D_F2(a0) 290 fsd f3, KVM_ARCH_FP_D_F3(a0) 291 fsd f4, KVM_ARCH_FP_D_F4(a0) 292 fsd f5, KVM_ARCH_FP_D_F5(a0) 293 fsd f6, KVM_ARCH_FP_D_F6(a0) 294 fsd f7, KVM_ARCH_FP_D_F7(a0) 295 fsd f8, KVM_ARCH_FP_D_F8(a0) 296 fsd f9, KVM_ARCH_FP_D_F9(a0) [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/arm/ |
D | tesla.yaml | 7 title: Tesla Full Self Driving(FSD) platforms 11 - linux-fsd@tesla.com 19 - description: FSD SoC board 22 - tesla,fsd-evb # Tesla FSD Evaluation 23 - const: tesla,fsd
|
/Linux-v6.1/arch/arm64/boot/dts/tesla/ |
D | fsd-evb.dts | 3 * Tesla FSD board device tree source 12 #include "fsd.dtsi" 15 model = "Tesla Full Self-Driving (FSD) Evaluation board"; 16 compatible = "tesla,fsd-evb", "tesla,fsd";
|
D | fsd.dtsi | 11 #include <dt-bindings/clock/fsd-clk.h> 15 compatible = "tesla,fsd"; 440 compatible = "tesla,fsd-clock-imem"; 454 compatible = "tesla,fsd-clock-cmu"; 462 compatible = "tesla,fsd-clock-cam_csi"; 470 compatible = "tesla,fsd-clock-mfc"; 478 compatible = "tesla,fsd-clock-peric"; 496 compatible = "tesla,fsd-clock-fsys0"; 510 compatible = "tesla,fsd-clock-fsys1"; 742 compatible = "tesla,fsd-pinctrl"; [all …]
|
D | Makefile | 3 fsd-evb.dtb
|
D | fsd-pinctrl.h | 3 * Tesla FSD DTS pinctrl constants
|
D | fsd-pinctrl.dtsi | 11 #include "fsd-pinctrl.h"
|
/Linux-v6.1/fs/debugfs/ |
D | file.c | 52 struct debugfs_fsdata *fsd = F_DENTRY(filp)->d_fsdata; in debugfs_real_fops() local 54 if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT) { in debugfs_real_fops() 63 return fsd->real_fops; in debugfs_real_fops() 84 struct debugfs_fsdata *fsd; in debugfs_file_get() local 89 fsd = d_fsd; in debugfs_file_get() 91 fsd = kmalloc(sizeof(*fsd), GFP_KERNEL); in debugfs_file_get() 92 if (!fsd) in debugfs_file_get() 95 fsd->real_fops = (void *)((unsigned long)d_fsd & in debugfs_file_get() 97 refcount_set(&fsd->active_users, 1); in debugfs_file_get() 98 init_completion(&fsd->active_users_drained); in debugfs_file_get() [all …]
|
D | inode.c | 240 void *fsd = dentry->d_fsdata; in debugfs_release_dentry() local 242 if (!((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT)) in debugfs_release_dentry() 723 struct debugfs_fsdata *fsd; in __debugfs_file_removed() local 732 fsd = READ_ONCE(dentry->d_fsdata); in __debugfs_file_removed() 733 if ((unsigned long)fsd & DEBUGFS_FSDATA_IS_REAL_FOPS_BIT) in __debugfs_file_removed() 735 if (!refcount_dec_and_test(&fsd->active_users)) in __debugfs_file_removed() 736 wait_for_completion(&fsd->active_users_drained); in __debugfs_file_removed()
|
/Linux-v6.1/drivers/clk/samsung/ |
D | Kconfig | 130 bool "Tesla FSD clock controller support" if COMPILE_TEST 134 Support for the clock controller present on the Tesla FSD SoC.
|
D | clk-fsd.c | 8 * Common Clock Framework support for FSD SoC. 20 #include <dt-bindings/clock/fsd-clk.h> 315 CLK_OF_DECLARE(fsd_clk_cmu, "tesla,fsd-clock-cmu", fsd_clk_cmu_init); 1428 CLK_OF_DECLARE(fsd_clk_imem, "tesla,fsd-clock-imem", fsd_clk_imem_init); 1753 * fsd_cmu_probe - Probe function for FSD platform clocks 1756 * Configure clock hierarchy for clock domains of FSD platform 1772 .compatible = "tesla,fsd-clock-peric", 1775 .compatible = "tesla,fsd-clock-fsys0", 1778 .compatible = "tesla,fsd-clock-fsys1", 1781 .compatible = "tesla,fsd-clock-mfc", [all …]
|
D | Makefile | 30 obj-$(CONFIG_TESLA_FSD_COMMON_CLK) += clk-fsd.o
|
/Linux-v6.1/Documentation/devicetree/bindings/timer/ |
D | samsung,exynos4210-mct.yaml | 35 - tesla,fsd-mct 145 - tesla,fsd-mct
|
/Linux-v6.1/drivers/phy/samsung/ |
D | Makefile | 9 phy-exynos-ufs-y += phy-fsd-ufs.o
|
D | phy-fsd-ufs.c | 3 * UFS PHY driver data for FSD SoC
|
D | phy-samsung-ufs.c | 311 .compatible = "tesla,fsd-ufs-phy",
|
/Linux-v6.1/Documentation/devicetree/bindings/ufs/ |
D | samsung,exynos-ufs.yaml | 24 - tesla,fsd-ufs
|
/Linux-v6.1/drivers/pinctrl/samsung/ |
D | pinctrl-exynos-arm64.c | 730 * Pinctrl driver data for Tesla FSD SoC. FSD SoC includes three 734 /* pin banks of FSD pin-controller 0 (FSYS) */ 743 /* pin banks of FSD pin-controller 1 (PERIC) */ 768 /* pin banks of FSD pin-controller 2 (PMU) */
|
/Linux-v6.1/Documentation/devicetree/bindings/phy/ |
D | samsung,ufs-phy.yaml | 20 - tesla,fsd-ufs-phy
|
/Linux-v6.1/include/dt-bindings/clock/ |
D | fsd-clk.h | 9 * and fsd platform driver.
|
/Linux-v6.1/Documentation/devicetree/bindings/spi/ |
D | samsung,spi.yaml | 26 - tesla,fsd-spi
|
/Linux-v6.1/sound/pci/hda/ |
D | patch_cs8409-tables.c | 173 /* ASP1: MCEN=0, FSD=011, SCPOL_IN/OUT=0, SCDIV=1:4 */ 179 /* ASP2: 5050=1, MCEN=0, FSD=010, SCPOL_IN/OUT=1, SCDIV=1:16 */ 426 /* ASP1: MCEN=0, FSD=011, SCPOL_IN/OUT=0, SCDIV=1:4 */
|
/Linux-v6.1/Documentation/devicetree/bindings/pinctrl/ |
D | samsung,pinctrl.yaml | 56 - tesla,fsd-pinctrl
|