Home
last modified time | relevance | path

Searched refs:ip_data (Results 1 – 5 of 5) sorted by relevance

/drivers/video/omap2/dss/
Dti_hdmi.h68 void (*video_configure)(struct hdmi_ip_data *ip_data);
70 int (*phy_enable)(struct hdmi_ip_data *ip_data);
72 void (*phy_disable)(struct hdmi_ip_data *ip_data);
74 int (*read_edid)(struct hdmi_ip_data *ip_data, u8 *edid, int len);
76 bool (*detect)(struct hdmi_ip_data *ip_data);
78 int (*pll_enable)(struct hdmi_ip_data *ip_data);
80 void (*pll_disable)(struct hdmi_ip_data *ip_data);
82 int (*video_enable)(struct hdmi_ip_data *ip_data);
84 void (*video_disable)(struct hdmi_ip_data *ip_data);
86 void (*dump_wrapper)(struct hdmi_ip_data *ip_data, struct seq_file *s);
[all …]
Dti_hdmi_4xxx_ip.c53 static inline void __iomem *hdmi_wp_base(struct hdmi_ip_data *ip_data) in hdmi_wp_base() argument
55 return ip_data->base_wp; in hdmi_wp_base()
58 static inline void __iomem *hdmi_phy_base(struct hdmi_ip_data *ip_data) in hdmi_phy_base() argument
60 return ip_data->base_wp + ip_data->phy_offset; in hdmi_phy_base()
63 static inline void __iomem *hdmi_pll_base(struct hdmi_ip_data *ip_data) in hdmi_pll_base() argument
65 return ip_data->base_wp + ip_data->pll_offset; in hdmi_pll_base()
68 static inline void __iomem *hdmi_av_base(struct hdmi_ip_data *ip_data) in hdmi_av_base() argument
70 return ip_data->base_wp + ip_data->core_av_offset; in hdmi_av_base()
73 static inline void __iomem *hdmi_core_sys_base(struct hdmi_ip_data *ip_data) in hdmi_core_sys_base() argument
75 return ip_data->base_wp + ip_data->core_sys_offset; in hdmi_core_sys_base()
[all …]
Dhdmi.c64 struct hdmi_ip_data ip_data; member
343 dss_init_hdmi_ip_ops(&hdmi.ip_data, omapdss_get_version()); in hdmi_init_display()
385 if (timings_arr[i].cm.code == hdmi.ip_data.cfg.cm.code) in hdmi_find_timing()
396 if (hdmi.ip_data.cfg.cm.mode == HDMI_DVI) { in hdmi_get_timings()
461 return hdmi.ip_data.cfg.timings.pixel_clock * 1000; in hdmi_get_pixel_clock()
562 p = &hdmi.ip_data.cfg.timings; in hdmi_power_on_full()
568 hdmi_compute_pll(dssdev, phy, &hdmi.ip_data.pll_data); in hdmi_power_on_full()
570 hdmi.ip_data.ops->video_disable(&hdmi.ip_data); in hdmi_power_on_full()
573 r = hdmi.ip_data.ops->pll_enable(&hdmi.ip_data); in hdmi_power_on_full()
579 r = hdmi.ip_data.ops->phy_enable(&hdmi.ip_data); in hdmi_power_on_full()
[all …]
Ddss_features.c820 void dss_init_hdmi_ip_ops(struct hdmi_ip_data *ip_data, in dss_init_hdmi_ip_ops() argument
827 ip_data->ops = &omap4_hdmi_functions; in dss_init_hdmi_ip_ops()
830 ip_data->ops = NULL; in dss_init_hdmi_ip_ops()
833 WARN_ON(ip_data->ops == NULL); in dss_init_hdmi_ip_ops()
Ddss_features.h121 void dss_init_hdmi_ip_ops(struct hdmi_ip_data *ip_data,