Home
last modified time | relevance | path

Searched full:vic (Results 1 – 25 of 144) sorted by relevance

123456

/Linux-v5.15/drivers/gpu/drm/tegra/
Dvic.c22 #include "vic.h"
30 struct vic { struct
44 static inline struct vic *to_vic(struct tegra_drm_client *client) in to_vic() argument
46 return container_of(client, struct vic, client); in to_vic()
49 static void vic_writel(struct vic *vic, u32 value, unsigned int offset) in vic_writel() argument
51 writel(value, vic->regs + offset); in vic_writel()
54 static int vic_boot(struct vic *vic) in vic_boot() argument
57 struct iommu_fwspec *spec = dev_iommu_fwspec_get(vic->dev); in vic_boot()
64 if (vic->config->supports_sid && spec) { in vic_boot()
69 vic_writel(vic, value, VIC_TFBIF_TRANSCFG); in vic_boot()
[all …]
Dvic.h9 /* VIC methods */
14 /* VIC registers */
/Linux-v5.15/drivers/irqchip/
Dirq-aspeed-vic.c5 * 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 …]
Dirq-vic.c3 * 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-v5.15/Documentation/devicetree/bindings/interrupt-controller/
Darm,vic.yaml4 $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";
Daspeed,ast2400-vic.txt9 - compatible : "aspeed,ast2400-vic"
10 "aspeed,ast2500-vic"
18 vic: interrupt-controller@1e6c0080 {
19 compatible = "aspeed,ast2400-vic";
Dinterrupts.txt51 vic: intc@10140000 {
52 compatible = "arm,versatile-vic";
63 interrupt-parent = <&vic>;
64 interrupts = <31>; /* Cascaded to vic */
/Linux-v5.15/drivers/gpu/drm/
Ddrm_edid.c1526 * HDMI 1.4 4k modes. Index using the VIC.
3302 static __always_inline const struct drm_display_mode *cea_mode_for_vic(u8 vic) in cea_mode_for_vic() argument
3307 if (vic >= 1 && vic < 1 + ARRAY_SIZE(edid_cea_modes_1)) in cea_mode_for_vic()
3308 return &edid_cea_modes_1[vic - 1]; in cea_mode_for_vic()
3309 if (vic >= 193 && vic < 193 + ARRAY_SIZE(edid_cea_modes_193)) in cea_mode_for_vic()
3310 return &edid_cea_modes_193[vic - 193]; in cea_mode_for_vic()
3319 static u8 cea_next_vic(u8 vic) in cea_next_vic() argument
3321 if (++vic == 1 + ARRAY_SIZE(edid_cea_modes_1)) in cea_next_vic()
3322 vic = 193; in cea_next_vic()
3323 return vic; in cea_next_vic()
[all …]
/Linux-v5.15/drivers/gpu/drm/rockchip/
Drk3066_hdmi.c24 int vic; /* The CEA Video ID (VIC) of the current drm display mode. */ member
222 if (hdmi->hdmi_data.vic == 2 || hdmi->hdmi_data.vic == 3) in rk3066_hdmi_config_video_timing()
320 hdmi->hdmi_data.vic = drm_match_cea_mode(mode); in rk3066_hdmi_setup()
323 if (hdmi->hdmi_data.vic == 6 || hdmi->hdmi_data.vic == 7 || in rk3066_hdmi_setup()
324 hdmi->hdmi_data.vic == 21 || hdmi->hdmi_data.vic == 22 || in rk3066_hdmi_setup()
325 hdmi->hdmi_data.vic == 2 || hdmi->hdmi_data.vic == 3 || in rk3066_hdmi_setup()
326 hdmi->hdmi_data.vic == 17 || hdmi->hdmi_data.vic == 18) in rk3066_hdmi_setup()
488 u32 vic = drm_match_cea_mode(mode); in rk3066_hdmi_connector_mode_valid() local
490 if (vic > 1) in rk3066_hdmi_connector_mode_valid()
Dinno_hdmi.c32 int vic; member
436 hdmi->hdmi_data.vic = drm_match_cea_mode(mode); in inno_hdmi_setup()
441 if ((hdmi->hdmi_data.vic == 6) || (hdmi->hdmi_data.vic == 7) || in inno_hdmi_setup()
442 (hdmi->hdmi_data.vic == 21) || (hdmi->hdmi_data.vic == 22) || in inno_hdmi_setup()
443 (hdmi->hdmi_data.vic == 2) || (hdmi->hdmi_data.vic == 3) || in inno_hdmi_setup()
444 (hdmi->hdmi_data.vic == 17) || (hdmi->hdmi_data.vic == 18)) in inno_hdmi_setup()
/Linux-v5.15/drivers/gpu/drm/meson/
Dmeson_venc.h53 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,
Dmeson_venc.c818 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 …]
Dmeson_dw_hdmi.c381 int vic = drm_match_cea_mode(mode); in dw_hdmi_set_vclk() local
396 if (!vic) { in dw_hdmi_set_vclk()
410 if (meson_venc_hdmi_venc_repeat(vic) || in dw_hdmi_set_vclk()
643 int vic = drm_match_cea_mode(mode); in dw_hdmi_mode_valid() local
655 /* Check against non-VIC supported modes */ in dw_hdmi_mode_valid()
656 if (!vic) { in dw_hdmi_mode_valid()
662 /* Check against supported VIC modes */ in dw_hdmi_mode_valid()
663 } else if (!meson_venc_hdmi_supported_vic(vic)) in dw_hdmi_mode_valid()
685 if (meson_venc_hdmi_venc_repeat(vic) || in dw_hdmi_mode_valid()
796 int vic = drm_match_cea_mode(mode); in meson_venc_hdmi_encoder_mode_set() local
[all …]
/Linux-v5.15/arch/arm/boot/dts/
Dspear3xx.dtsi11 interrupt-parent = <&vic>;
34 vic: interrupt-controller@f1100000 { label
35 compatible = "arm,pl190-vic";
44 interrupt-parent = <&vic>;
Dversatile-ab.dts9 interrupt-parent = <&vic>;
198 vic: interrupt-controller@10140000 { label
199 compatible = "arm,versatile-vic";
211 interrupt-parent = <&vic>;
212 interrupts = <31>; /* Cascaded to vic */
417 interrupts-extended = <&vic 22 &sic 1>;
Dsd5203.dts13 interrupt-parent = <&vic>;
47 vic: interrupt-controller@10130000 { label
/Linux-v5.15/drivers/media/platform/exynos4-is/
Dfimc-is-regs.h26 /* 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-v5.15/drivers/net/ethernet/cisco/enic/
DKconfig7 tristate "Cisco VIC Ethernet NIC Support"
10 This enables the support for the Cisco VIC Ethernet card.
/Linux-v5.15/drivers/infiniband/hw/usnic/
DKconfig3 tristate "Verbs support for Cisco VIC"
11 Cards (VICs), including the VIC 1240 and 1280 cards.
/Linux-v5.15/arch/nios2/include/asm/
Dprocessor.h6 * Vic Phillips (vic@microtronix.com)
/Linux-v5.15/include/media/
Dv4l2-dv-timings.h102 * 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-v5.15/drivers/gpu/drm/bridge/analogix/
Danalogix_dp_core.c1501 int vic; in analogix_dp_bridge_mode_set() local
1509 vic = drm_match_cea_mode(mode); in analogix_dp_bridge_mode_set()
1510 if ((vic == 6) || (vic == 7) || (vic == 21) || (vic == 22) || in analogix_dp_bridge_mode_set()
1511 (vic == 2) || (vic == 3) || (vic == 17) || (vic == 18)) { in analogix_dp_bridge_mode_set()
1514 } else if (vic) { in analogix_dp_bridge_mode_set()
/Linux-v5.15/Documentation/devicetree/bindings/display/tegra/
Dnvidia,tegra20-host1x.txt379 - vic: Video Image Compositor
380 - compatible : "nvidia,tegra<chip>-vic"
386 - vic: clock input for the VIC hardware
390 - vic
393 - interconnects: Must contain entry for the VIC memory clients.
/Linux-v5.15/drivers/gpu/drm/nouveau/nvkm/engine/vic/
DKbuild2 #nvkm-y += nvkm/engine/vic/base.o
/Linux-v5.15/arch/nios2/kernel/
Dsetup.c6 * Copyright (C) 2001 Vic Phillips <vic@microtronix.com>

123456