Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1316159 > unrolled thread
| Started by | Yakir Yang <ykk@rock-chips.com> |
|---|---|
| First post | 2016-01-25 02:50 +0100 |
| Last post | 2016-01-26 03:30 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH v6 0/1] Introduce Innosilicon HDMI driver on Rockchip platforms Yakir Yang <ykk@rock-chips.com> - 2016-01-25 02:50 +0100
Re: [PATCH v6 0/1] Introduce Innosilicon HDMI driver on Rockchip platforms Heiko Stübner <heiko@sntech.de> - 2016-01-25 13:50 +0100
Re: [PATCH v6 0/1] Introduce Innosilicon HDMI driver on Rockchip platforms Yakir Yang <ykk@rock-chips.com> - 2016-01-26 03:40 +0100
Re: [PATCH v6] drm/rockchip: hdmi: add Innosilicon HDMI support Paul Bolle <pebolle@tiscali.nl> - 2016-01-26 01:50 +0100
Re: [PATCH v6] drm/rockchip: hdmi: add Innosilicon HDMI support Yakir Yang <ykk@rock-chips.com> - 2016-01-26 03:30 +0100
| From | Yakir Yang <ykk@rock-chips.com> |
|---|---|
| Date | 2016-01-25 02:50 +0100 |
| Subject | [PATCH v6 0/1] Introduce Innosilicon HDMI driver on Rockchip platforms |
| Message-ID | <qUEs2-4Xi-9@gated-at.bofh.it> |
Here are a brief introduction to Innosilicon HDMI IP:
- Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant transmitter
- Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec
- Digital video interface supports a pixel size of 24, 30, 36, 48bits color depth in RGB
- S/PDIF output supports PCM, Dolby Digital, DTS digital audio transmission
(32-192kHz Fs) using IEC60958 and IEC 61937
- The EDID and CEC function are also supported by Innosilicon HDMI Transmitter Controlle
Changes in v6:
- Rebase the Makefile/Kconfig files which add by Chris's rockchip-mipi driver (Caeser)
Changes in v5:
- Use hdmi_infoframe helper functions to packed the infoframe (Russell)
- Remove the unused double wait_for_completion_timeout for ddc transfer (Russell)
- Remove the unused local variable in "inno_hdmi_i2c_write()" function (Russell)
Changes in v4:
- Modify the commit title "drm/rockchip: hdmi: ..." (Mark)
- Correct the "DKMS" to "DPMS" (Mark)
- Fix over 80 characters problems (Mark)
- Remove encoder .prepare/.commit helper functions, and move the vop mode
configure function into encoder .enable helper functions. (Mark)
Changes in v3:
- Use encoder enable/disable function, and remove the encoder DPMS function
- Keep HDMI PLL power on in standby mode
Changes in v2:
- Using DRM atomic helper functions for connector init (Mark)
- Remove "hdmi->connector.encoder = encoder;" (Mark)
Yakir Yang (1):
drm/rockchip: hdmi: add Innosilicon HDMI support
drivers/gpu/drm/rockchip/Kconfig | 8 +
drivers/gpu/drm/rockchip/Makefile | 1 +
drivers/gpu/drm/rockchip/inno_hdmi.c | 941 +++++++++++++++++++++++++++++++++++
drivers/gpu/drm/rockchip/inno_hdmi.h | 362 ++++++++++++++
4 files changed, 1312 insertions(+)
create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.c
create mode 100644 drivers/gpu/drm/rockchip/inno_hdmi.h
--
1.9.1
[toc] | [next] | [standalone]
| From | Heiko Stübner <heiko@sntech.de> |
|---|---|
| Date | 2016-01-25 13:50 +0100 |
| Message-ID | <qUOKM-3WU-53@gated-at.bofh.it> |
| In reply to | #1316159 |
Am Montag, 25. Januar 2016, 09:43:17 schrieb Yakir Yang: > Here are a brief introduction to Innosilicon HDMI IP: > - Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant transmitter > - Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec > - Digital video interface supports a pixel size of 24, 30, 36, 48bits > color depth in RGB - S/PDIF output supports PCM, Dolby Digital, DTS digital > audio transmission (32-192kHz Fs) using IEC60958 and IEC 61937 > - The EDID and CEC function are also supported by Innosilicon HDMI > Transmitter Controlle have you lost separate the devicetree-binding patch somewhere? I don't remember it getting applied and Mark may miss it if it's only contained in some old series. Heiko
[toc] | [prev] | [next] | [standalone]
| From | Yakir Yang <ykk@rock-chips.com> |
|---|---|
| Date | 2016-01-26 03:40 +0100 |
| Subject | Re: [PATCH v6 0/1] Introduce Innosilicon HDMI driver on Rockchip platforms |
| Message-ID | <qV1HY-4RV-11@gated-at.bofh.it> |
| In reply to | #1316660 |
Hi Heiko, On 01/25/2016 08:47 PM, Heiko Stübner wrote: > Am Montag, 25. Januar 2016, 09:43:17 schrieb Yakir Yang: >> Here are a brief introduction to Innosilicon HDMI IP: >> - Support HDMI 1.4a, HDCP 1.2 and DVI 1.0 standard compliant transmitter >> - Support HDMI1.4 a/b 3D function defined in HDMI 1.4 a/b spec >> - Digital video interface supports a pixel size of 24, 30, 36, 48bits >> color depth in RGB - S/PDIF output supports PCM, Dolby Digital, DTS digital >> audio transmission (32-192kHz Fs) using IEC60958 and IEC 61937 >> - The EDID and CEC function are also supported by Innosilicon HDMI >> Transmitter Controlle > have you lost separate the devicetree-binding patch somewhere? > > I don't remember it getting applied and Mark may miss it if it's only > contained in some old series. Ops, I may misunderstand the rule, I thought if patch was acked by maintainer, then I should keep it no changed. Hmmm, so not Acked but Applied, thanks, I would update now. Yakir > > Heiko > > >
[toc] | [prev] | [next] | [standalone]
| From | Paul Bolle <pebolle@tiscali.nl> |
|---|---|
| Date | 2016-01-26 01:50 +0100 |
| Subject | Re: [PATCH v6] drm/rockchip: hdmi: add Innosilicon HDMI support |
| Message-ID | <qUZZw-3Gr-1@gated-at.bofh.it> |
| In reply to | #1316159 |
On ma, 2016-01-25 at 09:47 +0800, Yakir Yang wrote:
> --- a/drivers/gpu/drm/rockchip/Kconfig
> +++ b/drivers/gpu/drm/rockchip/Kconfig
> +config ROCKCHIP_INNO_HDMI
> + tristate "Rockchip specific extensions for Innosilicon HDMI"
> + depends on DRM_ROCKCHIP
> + help
> + This selects support for Rockchip SoC specific extensions
> + for the Innosilicon HDMI driver. If you want to enable
> + HDMI on RK3036 based SoC, you should selet this option.
(Really trivial: start indentation with tabs only, please. And
s/selet/select/.)
> --- /dev/null
> +++ b/drivers/gpu/drm/rockchip/inno_hdmi.c
> + * This software is licensed under the terms of the GNU General
> Public
> + * License version 2, as published by the Free Software Foundation,
> and
> + * may be copied, distributed, and modified under those terms.
This states this file is licensed GPL v2 only.
> +MODULE_LICENSE("GPL");
And, according to include/linux/module.h, this means "GNU Public License
v2 or later".
So I think there's a (subtle) mismatch between the license ident used
for this driver and the comment above.
Thanks,
Paul Bolle
[toc] | [prev] | [next] | [standalone]
| From | Yakir Yang <ykk@rock-chips.com> |
|---|---|
| Date | 2016-01-26 03:30 +0100 |
| Subject | Re: [PATCH v6] drm/rockchip: hdmi: add Innosilicon HDMI support |
| Message-ID | <qV1yi-4Nn-17@gated-at.bofh.it> |
| In reply to | #1317430 |
Hi Paul,
On 01/26/2016 08:45 AM, Paul Bolle wrote:
> On ma, 2016-01-25 at 09:47 +0800, Yakir Yang wrote:
>> --- a/drivers/gpu/drm/rockchip/Kconfig
>> +++ b/drivers/gpu/drm/rockchip/Kconfig
>> +config ROCKCHIP_INNO_HDMI
>> + tristate "Rockchip specific extensions for Innosilicon HDMI"
>> + depends on DRM_ROCKCHIP
>> + help
>> + This selects support for Rockchip SoC specific extensions
>> + for the Innosilicon HDMI driver. If you want to enable
>> + HDMI on RK3036 based SoC, you should selet this option.
> (Really trivial: start indentation with tabs only, please. And
> s/selet/select/.)
Got it
>> --- /dev/null
>> +++ b/drivers/gpu/drm/rockchip/inno_hdmi.c
>> + * This software is licensed under the terms of the GNU General
>> Public
>> + * License version 2, as published by the Free Software Foundation,
>> and
>> + * may be copied, distributed, and modified under those terms.
> This states this file is licensed GPL v2 only.
>
>> +MODULE_LICENSE("GPL");
> And, according to include/linux/module.h, this means "GNU Public License
> v2 or later".
>
> So I think there's a (subtle) mismatch between the license ident used
> for this driver and the comment above.
Ah, thanks.
- Yakir
> Thanks,
>
>
> Paul Bolle
>
>
>
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web