/linux/Documentation/devicetree/bindings/soc/fsl/ |
H A D | fsl,layerscape-scfg.yaml | 4 $id: http://devicetree.org/schemas/soc/fsl/fsl,layerscape-scfg.yaml# 13 SCFG is the supplemental configuration unit, that provides SoC specific 21 - fsl,ls1012a-scfg 22 - fsl,ls1021a-scfg 23 - fsl,ls1028a-scfg 24 - fsl,ls1043a-scfg 25 - fsl,ls1046a-scfg 58 compatible = "fsl,ls1021a-scfg", "syscon";
|
/linux/drivers/hwmon/ |
H A D | k8temp.c | 135 u8 scfg; in k8temp_probe() local 171 pci_read_config_byte(pdev, REG_TEMP, &scfg); in k8temp_probe() 172 scfg &= ~(SEL_PLACE | SEL_CORE); /* Select sensor 0, core0 */ in k8temp_probe() 173 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe() 174 pci_read_config_byte(pdev, REG_TEMP, &scfg); in k8temp_probe() 176 if (scfg & (SEL_PLACE | SEL_CORE)) { in k8temp_probe() 181 scfg |= (SEL_PLACE | SEL_CORE); in k8temp_probe() 182 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe() 188 scfg &= ~SEL_CORE; /* Select sensor 1, core0 */ in k8temp_probe() 189 pci_write_config_byte(pdev, REG_TEMP, scfg); in k8temp_probe() [all …]
|
/linux/Documentation/devicetree/bindings/powerpc/fsl/ |
H A D | scfg.txt | 1 Freescale Supplement configuration unit (SCFG) 3 SCFG is the supplemental configuration unit, that provides SoC specific 9 - compatible: should be "fsl,<chip>-scfg" 10 - reg: should contain base address and length of SCFG memory-mapped 15 scfg: global-utilities@fc000 { 16 compatible = "fsl,t1040-scfg";
|
/linux/arch/powerpc/platforms/85xx/ |
H A D | t1042rdb_diu.c | 17 /*DIU Pixel ClockCR offset in scfg*/ 79 void __iomem *scfg; in t1042rdb_set_pixel_clock() local 84 scfg_np = of_find_compatible_node(NULL, NULL, "fsl,t1040-scfg"); in t1042rdb_set_pixel_clock() 86 pr_err("%s: Missing scfg node. Can not display video.\n", in t1042rdb_set_pixel_clock() 91 scfg = of_iomap(scfg_np, 0); in t1042rdb_set_pixel_clock() 93 if (!scfg) { in t1042rdb_set_pixel_clock() 113 clrbits32(scfg + CCSR_SCFG_PIXCLKCR, in t1042rdb_set_pixel_clock() 117 setbits32(scfg + CCSR_SCFG_PIXCLKCR, PIXCLKCR_PXCKEN | (pxclk << 16)); in t1042rdb_set_pixel_clock() 119 iounmap(scfg); in t1042rdb_set_pixel_clock()
|
/linux/drivers/irqchip/ |
H A D | irq-mchp-eic.c | 33 * @scfg: backup for scfg registers (necessary for backup and self-refresh mode) 41 u32 scfg[MCHP_EIC_NIRQ]; member 117 eic->scfg[hwirq] = readl_relaxed(eic->base + in mchp_eic_irq_suspend() 134 writel_relaxed(eic->scfg[hwirq], eic->base + in mchp_eic_irq_resume()
|
H A D | irq-ls-scfg-msi.c | 3 * Freescale SCFG MSI(-X) support 132 .name = "SCFG", 417 .name = "ls-scfg-msi", 427 MODULE_DESCRIPTION("Freescale Layerscape SCFG MSI controller driver");
|
H A D | irq-ls-extirq.c | 192 * All extirq OF nodes are under a scfg/syscon node with in ls_extirq_of_init()
|
H A D | Makefile | 86 obj-$(CONFIG_LS_SCFG_MSI) += irq-ls-scfg-msi.o
|
/linux/Documentation/devicetree/bindings/pci/ |
H A D | fsl,layerscape-pcie.yaml | 47 fsl,pcie-scfg: 49 description: A phandle to the SCFG device node. The second entry is the 51 SCFG PEXN registers. 54 - description: A phandle to the SCFG device node
|
/linux/drivers/gpu/drm/fsl-dcu/ |
H A D | fsl_dcu_drm_drv.c | 104 struct regmap *scfg; in fsl_dcu_load() local 111 scfg = syscon_regmap_lookup_by_compatible("fsl,ls1021a-scfg"); in fsl_dcu_load() 112 if (PTR_ERR(scfg) != -ENODEV) { in fsl_dcu_load() 119 ret = regmap_update_bits(scfg, SCFG_PIXCLKCR, SCFG_PIXCLKCR_PXCEN, in fsl_dcu_load()
|
/linux/Documentation/devicetree/bindings/mailbox/ |
H A D | ti,secure-proxy.yaml | 36 - const: scfg 73 reg-names = "target_data", "rt", "scfg";
|
/linux/sound/soc/qcom/qdsp6/ |
H A D | q6afe.c | 545 struct afe_param_id_slot_mapping_cfg *scfg; member 849 kfree(port->scfg); in q6afe_port_free() 1280 port->scfg = kzalloc(sizeof(*port->scfg), GFP_KERNEL); in q6afe_tdm_port_prepare() 1281 if (!port->scfg) in q6afe_tdm_port_prepare() 1284 port->scfg->minor_version = AFE_API_VERSION_SLOT_MAPPING_CONFIG; in q6afe_tdm_port_prepare() 1285 port->scfg->num_channels = cfg->num_channels; in q6afe_tdm_port_prepare() 1286 port->scfg->bitwidth = cfg->bit_width; in q6afe_tdm_port_prepare() 1287 port->scfg->data_align_type = cfg->data_align_type; in q6afe_tdm_port_prepare() 1288 memcpy(port->scfg->ch_mapping, cfg->ch_mapping, in q6afe_tdm_port_prepare() 1505 if (port->scfg) { in q6afe_port_start() [all …]
|
/linux/arch/arm64/boot/dts/freescale/ |
H A D | fsl-ls1043a.dtsi | 316 scfg: scfg@1570000 { label 317 compatible = "fsl,ls1043a-scfg", "syscon"; 898 fsl,pcie-scfg = <&scfg 0>; 925 fsl,pcie-scfg = <&scfg 1>; 952 fsl,pcie-scfg = <&scfg 2>;
|
H A D | fsl-ls1012a.dtsi | 171 scfg: scfg@1570000 { label 172 compatible = "fsl,ls1012a-scfg", "syscon";
|
H A D | fsl-ls1046a.dtsi | 320 scfg: scfg@1570000 { label 321 compatible = "fsl,ls1046a-scfg", "syscon";
|
H A D | fsl-ls1028a.dtsi | 258 scfg: syscon@1fc0000 { label 259 compatible = "fsl,ls1028a-scfg", "syscon";
|
/linux/arch/arm/boot/dts/nxp/ls/ |
H A D | ls1021a.dtsi | 181 scfg: scfg@1570000 { label 182 compatible = "fsl,ls1021a-scfg", "syscon"; 822 fsl,pcie-scfg = <&scfg 0>; 846 fsl,pcie-scfg = <&scfg 1>;
|
/linux/Documentation/devicetree/bindings/interrupt-controller/ |
H A D | fsl,ls-msi.yaml | 7 title: Freescale Layerscape SCFG PCIe MSI controller
|
H A D | fsl,ls-extirq.yaml | 46 SCFG or the External Interrupt Control Register (IRQCR) in the ISC.
|
/linux/arch/powerpc/boot/dts/fsl/ |
H A D | t1023si-post.dtsi | 450 scfg: global-utilities@fc000 { label 451 compatible = "fsl,t1023-scfg";
|
H A D | t1040si-post.dtsi | 538 scfg: global-utilities@fc000 { label 539 compatible = "fsl,t1040-scfg";
|
/linux/drivers/dma/ |
H A D | st_fdma.h | 120 struct dma_slave_config scfg; member
|
/linux/arch/arm64/boot/dts/ti/ |
H A D | k3-j721s2-mcu-wakeup.dtsi | 56 reg-names = "target_data", "rt", "scfg"; 516 reg-names = "target_data", "rt", "scfg";
|
H A D | k3-am65-mcu.dtsi | 244 reg-names = "target_data", "rt", "scfg";
|
H A D | k3-j721e-mcu-wakeup.dtsi | 516 reg-names = "target_data", "rt", "scfg";
|