Files
SDK_RK3288/u-boot/drivers
Firefly 5148b4e482 [u-boot] hdmi: 3288/3368: support parse phy setting from dts
We can configurate phy setting in dts node "rockchip,phy_table"
with following format:

<maxfreq pre-emphasis slopeboost clklevel data0level data1level data2level>

Phy setting table must list from low freq to high freq and cover
all supported frequency, for example:

&hdmi {
	status = "okay";
        rockchip,phy_table =
                <165000000 0 0 17 17 17 17>,
                <340000000 0 0 14 17 17 17>,
                <594000000 0 0 9 17 17 17>;
};

If dts node is not exist, we use default setting defined in code.

Signed-off-by: Firefly <service@t-firefly.com>
2015-12-31 17:03:08 +08:00
..