/Linux-v6.1/drivers/gpu/drm/tegra/ |
D | vic.c | 23 #include "vic.h" 31 struct vic { struct 47 static inline struct vic *to_vic(struct tegra_drm_client *client) in to_vic() argument 49 return container_of(client, struct vic, client); in to_vic() 52 static void vic_writel(struct vic *vic, u32 value, unsigned int offset) in vic_writel() argument 54 writel(value, vic->regs + offset); in vic_writel() 57 static int vic_boot(struct vic *vic) in vic_boot() argument 60 struct iommu_fwspec *spec = dev_iommu_fwspec_get(vic->dev); in vic_boot() 67 if (vic->config->supports_sid && spec) { in vic_boot() 72 vic_writel(vic, value, VIC_TFBIF_TRANSCFG); in vic_boot() [all …]
|
D | vic.h | 9 /* VIC methods */ 14 /* VIC registers */
|
/Linux-v6.1/drivers/irqchip/ |
D | irq-aspeed-vic.c | 5 * Driver for Aspeed "new" VIC as found in SoC generation 3 and later 7 * Based on irq-vic.c: 58 static void vic_init_hw(struct aspeed_vic *vic) in vic_init_hw() argument 63 writel(0xffffffff, vic->base + AVIC_INT_ENABLE_CLR); in vic_init_hw() 64 writel(0xffffffff, vic->base + AVIC_INT_ENABLE_CLR + 4); in vic_init_hw() 67 writel(0xffffffff, vic->base + AVIC_INT_TRIGGER_CLR); in vic_init_hw() 68 writel(0xffffffff, vic->base + AVIC_INT_TRIGGER_CLR + 4); in vic_init_hw() 71 writel(0, vic->base + AVIC_INT_SELECT); in vic_init_hw() 72 writel(0, vic->base + AVIC_INT_SELECT + 4); in vic_init_hw() 78 sense = readl(vic->base + AVIC_INT_SENSE); in vic_init_hw() [all …]
|
D | irq-vic.c | 3 * linux/arch/arm/common/vic.c 23 #include <linux/irqchip/arm-vic.h> 42 #define VIC_ITCR 0x300 /* VIC test control register */ 49 * struct vic_device - VIC PM device 50 * @parent_irq: The parent IRQ number of the VIC if cascaded, or 0. 51 * @irq: The IRQ number for the base of the VIC. 52 * @base: The register base for the VIC. 60 * @domain: The IRQ domain for the VIC. 84 * @base: Base of the VIC. 102 static void resume_one_vic(struct vic_device *vic) in resume_one_vic() argument [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/display/tegra/ |
D | nvidia,tegra124-vic.yaml | 4 $id: http://devicetree.org/schemas/display/tegra/nvidia,tegra124-vic.yaml# 15 pattern: "^vic@[0-9a-f]+$" 20 - nvidia,tegra124-vic 21 - nvidia,tegra210-vic 22 - nvidia,tegra186-vic 23 - nvidia,tegra194-vic 24 - nvidia,tegra234-vic 27 - const: nvidia,tegra132-vic 28 - const: nvidia,tegra124-vic 38 - description: clock input for the VIC hardware [all …]
|
/Linux-v6.1/Documentation/devicetree/bindings/interrupt-controller/ |
D | arm,vic.yaml | 4 $id: http://devicetree.org/schemas/interrupt-controller/arm,vic.yaml# 13 One or more Vectored Interrupt Controllers (VIC's) can be connected in an 23 - arm,pl190-vic 24 - arm,pl192-vic 25 - arm,versatile-vic 33 VIC has no configuration options for interrupt sources. The single 70 // PL192 VIC 72 compatible = "arm,pl192-vic";
|
D | aspeed,ast2400-vic.txt | 9 - compatible : "aspeed,ast2400-vic" 10 "aspeed,ast2500-vic" 18 vic: interrupt-controller@1e6c0080 { 19 compatible = "aspeed,ast2400-vic";
|
D | interrupts.txt | 51 vic: intc@10140000 { 52 compatible = "arm,versatile-vic"; 63 interrupt-parent = <&vic>; 64 interrupts = <31>; /* Cascaded to vic */
|
/Linux-v6.1/drivers/gpu/drm/meson/ |
D | meson_encoder_hdmi.c | 70 int vic = drm_match_cea_mode(mode); in meson_encoder_hdmi_set_vclk() local 85 if (!vic) { in meson_encoder_hdmi_set_vclk() 99 if (meson_venc_hdmi_venc_repeat(vic) || in meson_encoder_hdmi_set_vclk() 127 int vic = drm_match_cea_mode(mode); in meson_encoder_hdmi_mode_valid() local 139 /* Check against non-VIC supported modes */ in meson_encoder_hdmi_mode_valid() 140 if (!vic) { in meson_encoder_hdmi_mode_valid() 146 /* Check against supported VIC modes */ in meson_encoder_hdmi_mode_valid() 147 } else if (!meson_venc_hdmi_supported_vic(vic)) in meson_encoder_hdmi_mode_valid() 169 if (meson_venc_hdmi_venc_repeat(vic) || in meson_encoder_hdmi_mode_valid() 198 int vic; in meson_encoder_hdmi_atomic_enable() local [all …]
|
D | meson_venc.h | 53 bool meson_venc_hdmi_supported_vic(int vic); 54 bool meson_venc_hdmi_venc_repeat(int vic); 62 void meson_venc_hdmi_mode_set(struct meson_drm *priv, int vic,
|
D | meson_venc.c | 818 unsigned int vic; member 879 bool meson_venc_hdmi_supported_vic(int vic) in meson_venc_hdmi_supported_vic() argument 883 while (vmode->vic && vmode->mode) { in meson_venc_hdmi_supported_vic() 884 if (vmode->vic == vic) in meson_venc_hdmi_supported_vic() 918 static union meson_hdmi_venc_mode *meson_venc_hdmi_get_vic_vmode(int vic) in meson_venc_hdmi_get_vic_vmode() argument 922 while (vmode->vic && vmode->mode) { in meson_venc_hdmi_get_vic_vmode() 923 if (vmode->vic == vic) in meson_venc_hdmi_get_vic_vmode() 931 bool meson_venc_hdmi_venc_repeat(int vic) in meson_venc_hdmi_venc_repeat() argument 934 if (vic == 6 || vic == 7 || /* 480i */ in meson_venc_hdmi_venc_repeat() 935 vic == 21 || vic == 22 || /* 576i */ in meson_venc_hdmi_venc_repeat() [all …]
|
/Linux-v6.1/drivers/gpu/drm/rockchip/ |
D | rk3066_hdmi.c | 25 int vic; /* The CEA Video ID (VIC) of the current drm display mode. */ member 232 if (hdmi->hdmi_data.vic == 2 || hdmi->hdmi_data.vic == 3) in rk3066_hdmi_config_video_timing() 332 hdmi->hdmi_data.vic = drm_match_cea_mode(mode); in rk3066_hdmi_setup() 335 if (hdmi->hdmi_data.vic == 6 || hdmi->hdmi_data.vic == 7 || in rk3066_hdmi_setup() 336 hdmi->hdmi_data.vic == 21 || hdmi->hdmi_data.vic == 22 || in rk3066_hdmi_setup() 337 hdmi->hdmi_data.vic == 2 || hdmi->hdmi_data.vic == 3 || in rk3066_hdmi_setup() 338 hdmi->hdmi_data.vic == 17 || hdmi->hdmi_data.vic == 18) in rk3066_hdmi_setup() 499 u32 vic = drm_match_cea_mode(mode); in rk3066_hdmi_connector_mode_valid() local 501 if (vic > 1) in rk3066_hdmi_connector_mode_valid()
|
D | inno_hdmi.c | 30 int vic; member 447 hdmi->hdmi_data.vic = drm_match_cea_mode(mode); in inno_hdmi_setup() 452 if ((hdmi->hdmi_data.vic == 6) || (hdmi->hdmi_data.vic == 7) || in inno_hdmi_setup() 453 (hdmi->hdmi_data.vic == 21) || (hdmi->hdmi_data.vic == 22) || in inno_hdmi_setup() 454 (hdmi->hdmi_data.vic == 2) || (hdmi->hdmi_data.vic == 3) || in inno_hdmi_setup() 455 (hdmi->hdmi_data.vic == 17) || (hdmi->hdmi_data.vic == 18)) in inno_hdmi_setup()
|
/Linux-v6.1/drivers/gpu/drm/ |
D | drm_edid.c | 1533 * HDMI 1.4 4k modes. Index using the VIC. 3965 static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic) in cea_mode_for_vic() argument 3970 if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1)) in cea_mode_for_vic() 3971 return &edid_cea_modes_1[vic - 1]; in cea_mode_for_vic() 3972 if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193)) in cea_mode_for_vic() 3973 return &edid_cea_modes_193[vic - 193]; in cea_mode_for_vic() 3982 static u8 cea_next_vic(u8 vic) in cea_next_vic() argument 3984 if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1)) in cea_next_vic() 3985 vic = 193; in cea_next_vic() 3986 return vic; in cea_next_vic() [all …]
|
/Linux-v6.1/arch/arm/boot/dts/ |
D | spear3xx.dtsi | 11 interrupt-parent = <&vic>; 34 vic: interrupt-controller@f1100000 { label 35 compatible = "arm,pl190-vic"; 44 interrupt-parent = <&vic>;
|
D | versatile-ab.dts | 9 interrupt-parent = <&vic>; 209 vic: interrupt-controller@10140000 { label 210 compatible = "arm,versatile-vic"; 222 interrupt-parent = <&vic>; 223 interrupts = <31>; /* Cascaded to vic */ 428 interrupts-extended = <&vic 22 &sic 1>;
|
D | sd5203.dts | 13 interrupt-parent = <&vic>; 47 vic: interrupt-controller@10130000 { label
|
D | hpe-gxp.dtsi | 63 compatible = "arm,pl192-vic"; 70 compatible = "arm,pl192-vic";
|
/Linux-v6.1/drivers/media/platform/samsung/exynos4-is/ |
D | fimc-is-regs.h | 26 /* Interrupt Generation Register 0 from Host CPU to VIC */ 33 /* Interrupt Clear Register 0 from Host CPU to VIC */ 40 /* Interrupt Mask Register 0 from Host CPU to VIC */ 47 /* Interrupt Status Register 0 from Host CPU to VIC */ 54 /* Interrupt Mask Status Register 0 from Host CPU to VIC */
|
/Linux-v6.1/drivers/net/ethernet/cisco/enic/ |
D | Kconfig | 7 tristate "Cisco VIC Ethernet NIC Support" 10 This enables the support for the Cisco VIC Ethernet card.
|
/Linux-v6.1/drivers/infiniband/hw/usnic/ |
D | Kconfig | 3 tristate "Verbs support for Cisco VIC" 11 Cards (VICs), including the VIC 1240 and 1280 cards.
|
/Linux-v6.1/arch/nios2/include/asm/ |
D | processor.h | 6 * Vic Phillips (vic@microtronix.com)
|
/Linux-v6.1/include/media/ |
D | v4l2-dv-timings.h | 102 * v4l2_find_dv_timings_cea861_vic() - find timings based on CEA-861 VIC 104 * @vic: CEA-861 VIC code 109 bool v4l2_find_dv_timings_cea861_vic(struct v4l2_dv_timings *t, u8 vic);
|
/Linux-v6.1/drivers/gpu/drm/nouveau/nvkm/engine/vic/ |
D | Kbuild | 2 #nvkm-y += nvkm/engine/vic/base.o
|
/Linux-v6.1/arch/nios2/kernel/ |
D | setup.c | 6 * Copyright (C) 2001 Vic Phillips <vic@microtronix.com>
|