mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
Merge git://git.denx.de/u-boot-video
This commit is contained in:
commit
0bb430c849
5 changed files with 101 additions and 28 deletions
|
@ -163,6 +163,7 @@ F: drivers/misc/rockchip-efuse.c
|
||||||
F: drivers/pinctrl/rockchip/
|
F: drivers/pinctrl/rockchip/
|
||||||
F: drivers/ram/rockchip/
|
F: drivers/ram/rockchip/
|
||||||
F: drivers/sysreset/sysreset_rockchip.c
|
F: drivers/sysreset/sysreset_rockchip.c
|
||||||
|
F: drivers/video/rockchip/
|
||||||
F: tools/rkcommon.c
|
F: tools/rkcommon.c
|
||||||
F: tools/rkcommon.h
|
F: tools/rkcommon.h
|
||||||
F: tools/rkimage.c
|
F: tools/rkimage.c
|
||||||
|
|
|
@ -165,6 +165,20 @@ ofnode ofnode_next_subnode(ofnode node)
|
||||||
fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
|
fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ofnode ofnode_get_parent(ofnode node)
|
||||||
|
{
|
||||||
|
ofnode parent;
|
||||||
|
|
||||||
|
assert(ofnode_valid(node));
|
||||||
|
if (ofnode_is_np(node))
|
||||||
|
parent = np_to_ofnode(of_get_parent(ofnode_to_np(node)));
|
||||||
|
else
|
||||||
|
parent.of_offset = fdt_parent_offset(gd->fdt_blob,
|
||||||
|
ofnode_to_offset(node));
|
||||||
|
|
||||||
|
return parent;
|
||||||
|
}
|
||||||
|
|
||||||
const char *ofnode_get_name(ofnode node)
|
const char *ofnode_get_name(ofnode node)
|
||||||
{
|
{
|
||||||
assert(ofnode_valid(node));
|
assert(ofnode_valid(node));
|
||||||
|
@ -174,6 +188,19 @@ const char *ofnode_get_name(ofnode node)
|
||||||
return fdt_get_name(gd->fdt_blob, ofnode_to_offset(node), NULL);
|
return fdt_get_name(gd->fdt_blob, ofnode_to_offset(node), NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ofnode ofnode_get_by_phandle(uint phandle)
|
||||||
|
{
|
||||||
|
ofnode node;
|
||||||
|
|
||||||
|
if (of_live_active())
|
||||||
|
node = np_to_ofnode(of_find_node_by_phandle(phandle));
|
||||||
|
else
|
||||||
|
node.of_offset = fdt_node_offset_by_phandle(gd->fdt_blob,
|
||||||
|
phandle);
|
||||||
|
|
||||||
|
return node;
|
||||||
|
}
|
||||||
|
|
||||||
int ofnode_read_size(ofnode node, const char *propname)
|
int ofnode_read_size(ofnode node, const char *propname)
|
||||||
{
|
{
|
||||||
int len;
|
int len;
|
||||||
|
|
|
@ -84,7 +84,7 @@ int rk_hdmi_ofdata_to_platdata(struct udevice *dev)
|
||||||
struct rk_hdmi_priv *priv = dev_get_priv(dev);
|
struct rk_hdmi_priv *priv = dev_get_priv(dev);
|
||||||
struct dw_hdmi *hdmi = &priv->hdmi;
|
struct dw_hdmi *hdmi = &priv->hdmi;
|
||||||
|
|
||||||
hdmi->ioaddr = (ulong)devfdt_get_addr(dev);
|
hdmi->ioaddr = (ulong)dev_read_addr(dev);
|
||||||
hdmi->mpll_cfg = rockchip_mpll_cfg;
|
hdmi->mpll_cfg = rockchip_mpll_cfg;
|
||||||
hdmi->phy_cfg = rockchip_phy_config;
|
hdmi->phy_cfg = rockchip_phy_config;
|
||||||
|
|
||||||
|
|
|
@ -218,41 +218,67 @@ static void rkvop_mode_set(struct udevice *dev,
|
||||||
* node within the VOP's 'port' list.
|
* node within the VOP's 'port' list.
|
||||||
* @return 0 if OK, -ve if something went wrong
|
* @return 0 if OK, -ve if something went wrong
|
||||||
*/
|
*/
|
||||||
static int rk_display_init(struct udevice *dev, ulong fbbase, int ep_node)
|
static int rk_display_init(struct udevice *dev, ulong fbbase, ofnode ep_node)
|
||||||
{
|
{
|
||||||
struct video_priv *uc_priv = dev_get_uclass_priv(dev);
|
struct video_priv *uc_priv = dev_get_uclass_priv(dev);
|
||||||
const void *blob = gd->fdt_blob;
|
|
||||||
struct rk_vop_priv *priv = dev_get_priv(dev);
|
struct rk_vop_priv *priv = dev_get_priv(dev);
|
||||||
int vop_id, remote_vop_id;
|
int vop_id, remote_vop_id;
|
||||||
struct rk3288_vop *regs = priv->regs;
|
struct rk3288_vop *regs = priv->regs;
|
||||||
struct display_timing timing;
|
struct display_timing timing;
|
||||||
struct udevice *disp;
|
struct udevice *disp;
|
||||||
int ret, remote, i, offset;
|
int ret;
|
||||||
|
u32 remote_phandle;
|
||||||
struct display_plat *disp_uc_plat;
|
struct display_plat *disp_uc_plat;
|
||||||
struct clk clk;
|
struct clk clk;
|
||||||
enum video_log2_bpp l2bpp;
|
enum video_log2_bpp l2bpp;
|
||||||
|
ofnode remote;
|
||||||
|
|
||||||
vop_id = fdtdec_get_int(blob, ep_node, "reg", -1);
|
debug("%s(%s, %lu, %s)\n", __func__,
|
||||||
|
dev_read_name(dev), fbbase, ofnode_get_name(ep_node));
|
||||||
|
|
||||||
|
vop_id = ofnode_read_s32_default(ep_node, "reg", -1);
|
||||||
debug("vop_id=%d\n", vop_id);
|
debug("vop_id=%d\n", vop_id);
|
||||||
remote = fdtdec_lookup_phandle(blob, ep_node, "remote-endpoint");
|
ret = ofnode_read_u32(ep_node, "remote-endpoint", &remote_phandle);
|
||||||
if (remote < 0)
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
remote = ofnode_get_by_phandle(remote_phandle);
|
||||||
|
if (!ofnode_valid(remote))
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
remote_vop_id = fdtdec_get_int(blob, remote, "reg", -1);
|
remote_vop_id = ofnode_read_u32_default(remote, "reg", -1);
|
||||||
debug("remote vop_id=%d\n", remote_vop_id);
|
debug("remote vop_id=%d\n", remote_vop_id);
|
||||||
|
|
||||||
for (i = 0, offset = remote; i < 3 && offset > 0; i++)
|
/*
|
||||||
offset = fdt_parent_offset(blob, offset);
|
* The remote-endpoint references into a subnode of the encoder
|
||||||
if (offset < 0) {
|
* (i.e. HDMI, MIPI, etc.) with the DTS looking something like
|
||||||
debug("%s: Invalid remote-endpoint position\n", dev->name);
|
* the following (assume 'hdmi_in_vopl' to be referenced):
|
||||||
|
*
|
||||||
|
* hdmi: hdmi@ff940000 {
|
||||||
|
* ports {
|
||||||
|
* hdmi_in: port {
|
||||||
|
* hdmi_in_vopb: endpoint@0 { ... };
|
||||||
|
* hdmi_in_vopl: endpoint@1 { ... };
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
* }
|
||||||
|
*
|
||||||
|
* The original code had 3 steps of "walking the parent", but
|
||||||
|
* a much better (as in: less likely to break if the DTS
|
||||||
|
* changes) way of doing this is to "find the enclosing device
|
||||||
|
* of UCLASS_DISPLAY".
|
||||||
|
*/
|
||||||
|
while (ofnode_valid(remote)) {
|
||||||
|
remote = ofnode_get_parent(remote);
|
||||||
|
if (!ofnode_valid(remote)) {
|
||||||
|
debug("%s(%s): no UCLASS_DISPLAY for remote-endpoint\n",
|
||||||
|
__func__, dev_read_name(dev));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = uclass_find_device_by_of_offset(UCLASS_DISPLAY, offset, &disp);
|
uclass_find_device_by_ofnode(UCLASS_DISPLAY, remote, &disp);
|
||||||
if (ret) {
|
if (disp)
|
||||||
debug("%s: device '%s' display not found (ret=%d)\n", __func__,
|
break;
|
||||||
dev->name, ret);
|
};
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
||||||
disp_uc_plat = dev_get_uclass_platdata(disp);
|
disp_uc_plat = dev_get_uclass_platdata(disp);
|
||||||
debug("Found device '%s', disp_uc_priv=%p\n", disp->name, disp_uc_plat);
|
debug("Found device '%s', disp_uc_priv=%p\n", disp->name, disp_uc_plat);
|
||||||
|
@ -334,16 +360,15 @@ void rk_vop_probe_regulators(struct udevice *dev,
|
||||||
int rk_vop_probe(struct udevice *dev)
|
int rk_vop_probe(struct udevice *dev)
|
||||||
{
|
{
|
||||||
struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
|
struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
|
||||||
const void *blob = gd->fdt_blob;
|
|
||||||
struct rk_vop_priv *priv = dev_get_priv(dev);
|
struct rk_vop_priv *priv = dev_get_priv(dev);
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
int port, node;
|
ofnode port, node;
|
||||||
|
|
||||||
/* Before relocation we don't need to do anything */
|
/* Before relocation we don't need to do anything */
|
||||||
if (!(gd->flags & GD_FLG_RELOC))
|
if (!(gd->flags & GD_FLG_RELOC))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
priv->regs = (struct rk3288_vop *)devfdt_get_addr(dev);
|
priv->regs = (struct rk3288_vop *)dev_read_addr(dev);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Try all the ports until we find one that works. In practice this
|
* Try all the ports until we find one that works. In practice this
|
||||||
|
@ -353,12 +378,16 @@ int rk_vop_probe(struct udevice *dev)
|
||||||
* clock so it is currently not possible to use more than one display
|
* clock so it is currently not possible to use more than one display
|
||||||
* device simultaneously.
|
* device simultaneously.
|
||||||
*/
|
*/
|
||||||
port = fdt_subnode_offset(blob, dev_of_offset(dev), "port");
|
port = dev_read_subnode(dev, "port");
|
||||||
if (port < 0)
|
if (!ofnode_valid(port)) {
|
||||||
|
debug("%s(%s): 'port' subnode not found\n",
|
||||||
|
__func__, dev_read_name(dev));
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
for (node = fdt_first_subnode(blob, port);
|
}
|
||||||
node > 0;
|
|
||||||
node = fdt_next_subnode(blob, node)) {
|
for (node = ofnode_first_subnode(port);
|
||||||
|
ofnode_valid(node);
|
||||||
|
node = dev_read_next_subnode(node)) {
|
||||||
ret = rk_display_init(dev, plat->base, node);
|
ret = rk_display_init(dev, plat->base, node);
|
||||||
if (ret)
|
if (ret)
|
||||||
debug("Device failed: ret=%d\n", ret);
|
debug("Device failed: ret=%d\n", ret);
|
||||||
|
|
|
@ -301,6 +301,14 @@ ofnode ofnode_first_subnode(ofnode node);
|
||||||
*/
|
*/
|
||||||
ofnode ofnode_next_subnode(ofnode node);
|
ofnode ofnode_next_subnode(ofnode node);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ofnode_get_parent() - get the ofnode's parent (enclosing ofnode)
|
||||||
|
*
|
||||||
|
* @node: valid node to look up
|
||||||
|
* @return ofnode reference of the parent node
|
||||||
|
*/
|
||||||
|
ofnode ofnode_get_parent(ofnode node);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ofnode_get_name() - get the name of a node
|
* ofnode_get_name() - get the name of a node
|
||||||
*
|
*
|
||||||
|
@ -309,6 +317,14 @@ ofnode ofnode_next_subnode(ofnode node);
|
||||||
*/
|
*/
|
||||||
const char *ofnode_get_name(ofnode node);
|
const char *ofnode_get_name(ofnode node);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ofnode_get_by_phandle() - get ofnode from phandle
|
||||||
|
*
|
||||||
|
* @phandle: phandle to look up
|
||||||
|
* @return ofnode reference to the phandle
|
||||||
|
*/
|
||||||
|
ofnode ofnode_get_by_phandle(uint phandle);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ofnode_read_size() - read the size of a property
|
* ofnode_read_size() - read the size of a property
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue