Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1339506 > unrolled thread
| Started by | John Keeping <john@metanate.com> |
|---|---|
| First post | 2016-02-22 15:20 +0100 |
| Last post | 2016-02-22 18:30 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
Disabling graph endpoints in device trees John Keeping <john@metanate.com> - 2016-02-22 15:20 +0100
Re: Disabling graph endpoints in device trees Philipp Zabel <p.zabel@pengutronix.de> - 2016-02-22 17:20 +0100
Re: Disabling graph endpoints in device trees John Keeping <john@metanate.com> - 2016-02-22 18:30 +0100
| From | John Keeping <john@metanate.com> |
|---|---|
| Date | 2016-02-22 15:20 +0100 |
| Subject | Disabling graph endpoints in device trees |
| Message-ID | <r4Zvc-6YD-15@gated-at.bofh.it> |
Hi,
Is there a reason why endpoints in a device tree graph can't be
disabled?
I would like to be able to force the use of a particular CRTC for
certain outputs even though the hardware is capable of connecting any
CRTC to any output. In this case I need to be able to support a wide
range of frequencies for external HDMI monitors so I will configure one
of the CRTCs to be able to generate these while the other will be tied
into a limited set of clock rates as a result of the overall system
clock setup.
Currently this can only be achieved by removing the endpoints from the
base SoC .dtsi file but it feels like it should be possible to add
'status = "disabled"' to the nodes in the board-specific .dts in order
to disable undesirable configurations.
I tested the change below and it behaves exactly as I want, but I don't
claim to understand all of the users of these functions to know if it
will break something else (hence this isn't a formal patch).
-- >8 --
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 017dd94..1e56b91 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -2143,7 +2143,7 @@ struct device_node *of_graph_get_port_by_id(struct device_node *parent, u32 id)
if (node)
parent = node;
- for_each_child_of_node(parent, port) {
+ for_each_available_child_of_node(parent, port) {
u32 port_id = 0;
if (of_node_cmp(port->name, "port") != 0)
@@ -2209,7 +2209,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
* getting the next child. If the previous endpoint is NULL this
* will return the first child.
*/
- endpoint = of_get_next_child(port, prev);
+ endpoint = of_get_next_available_child(port, prev);
if (endpoint) {
of_node_put(port);
return endpoint;
@@ -2219,7 +2219,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
prev = NULL;
do {
- port = of_get_next_child(parent, port);
+ port = of_get_next_available_child(parent, port);
if (!port)
return NULL;
} while (of_node_cmp(port->name, "port"));
-- 8< --
Thanks,
John
[toc] | [next] | [standalone]
| From | Philipp Zabel <p.zabel@pengutronix.de> |
|---|---|
| Date | 2016-02-22 17:20 +0100 |
| Message-ID | <r51nj-8j5-1@gated-at.bofh.it> |
| In reply to | #1339506 |
Hi John,
Am Montag, den 22.02.2016, 14:14 +0000 schrieb John Keeping:
> Hi,
>
> Is there a reason why endpoints in a device tree graph can't be
> disabled?
You can always remove them using /delete-node/, which also has the
advantage of reminding you not to leave a single dangling endpoint.
> I would like to be able to force the use of a particular CRTC for
> certain outputs even though the hardware is capable of connecting any
> CRTC to any output. In this case I need to be able to support a wide
> range of frequencies for external HDMI monitors so I will configure one
> of the CRTCs to be able to generate these while the other will be tied
> into a limited set of clock rates as a result of the overall system
> clock setup.
>
> Currently this can only be achieved by removing the endpoints from the
> base SoC .dtsi file but it feels like it should be possible to add
> 'status = "disabled"' to the nodes in the board-specific .dts in order
> to disable undesirable configurations.
>
> I tested the change below and it behaves exactly as I want, but I don't
> claim to understand all of the users of these functions to know if it
> will break something else (hence this isn't a formal patch).
I don't know that any driver depends on being able to parse disabled
endpoints, but given the above I'm not sure that keeping disabled
endpoints in the device tree is a useful feature.
Disabling ports makes more sense to me. It should be documented in
Documentation/devicetree/bindings/graph.txt though.
> -- >8 --
> diff --git a/drivers/of/base.c b/drivers/of/base.c
> index 017dd94..1e56b91 100644
> --- a/drivers/of/base.c
> +++ b/drivers/of/base.c
> @@ -2143,7 +2143,7 @@ struct device_node *of_graph_get_port_by_id(struct device_node *parent, u32 id)
> if (node)
> parent = node;
>
> - for_each_child_of_node(parent, port) {
> + for_each_available_child_of_node(parent, port) {
> u32 port_id = 0;
>
> if (of_node_cmp(port->name, "port") != 0)
> @@ -2209,7 +2209,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
> * getting the next child. If the previous endpoint is NULL this
> * will return the first child.
> */
> - endpoint = of_get_next_child(port, prev);
> + endpoint = of_get_next_available_child(port, prev);
> if (endpoint) {
> of_node_put(port);
> return endpoint;
> @@ -2219,7 +2219,7 @@ struct device_node *of_graph_get_next_endpoint(const struct device_node *parent,
> prev = NULL;
>
> do {
> - port = of_get_next_child(parent, port);
> + port = of_get_next_available_child(parent, port);
> if (!port)
> return NULL;
> } while (of_node_cmp(port->name, "port"));
> -- 8< --
>
>
> Thanks,
> John
best regards
Philipp
[toc] | [prev] | [next] | [standalone]
| From | John Keeping <john@metanate.com> |
|---|---|
| Date | 2016-02-22 18:30 +0100 |
| Message-ID | <r52t4-LR-15@gated-at.bofh.it> |
| In reply to | #1339693 |
Hi Phillipp,
On Mon, 22 Feb 2016 17:12:27 +0100, Philipp Zabel wrote:
> Am Montag, den 22.02.2016, 14:14 +0000 schrieb John Keeping:
> > Is there a reason why endpoints in a device tree graph can't be
> > disabled?
>
> You can always remove them using /delete-node/, which also has the
> advantage of reminding you not to leave a single dangling endpoint.
Thanks, I wasn't aware of /delete-node/. It does indeed do what I want.
> > I would like to be able to force the use of a particular CRTC for
> > certain outputs even though the hardware is capable of connecting any
> > CRTC to any output. In this case I need to be able to support a wide
> > range of frequencies for external HDMI monitors so I will configure one
> > of the CRTCs to be able to generate these while the other will be tied
> > into a limited set of clock rates as a result of the overall system
> > clock setup.
> >
> > Currently this can only be achieved by removing the endpoints from the
> > base SoC .dtsi file but it feels like it should be possible to add
> > 'status = "disabled"' to the nodes in the board-specific .dts in order
> > to disable undesirable configurations.
> >
> > I tested the change below and it behaves exactly as I want, but I don't
> > claim to understand all of the users of these functions to know if it
> > will break something else (hence this isn't a formal patch).
>
> I don't know that any driver depends on being able to parse disabled
> endpoints, but given the above I'm not sure that keeping disabled
> endpoints in the device tree is a useful feature.
> Disabling ports makes more sense to me. It should be documented in
> Documentation/devicetree/bindings/graph.txt though.
That isn't relevent for my scenario because this case has a port with
multiple endpoints and we only want one of the endpoints to be
available:
vopb_out: port {
#address-cells = <1>;
#size-cells = <0>;
vopb_out_hdmi: endpoint@0 {
reg = <0>;
remote-endpoint = <&hdmi_in_vopb>;
};
vopb_out_mipi: endpoint@1 {
reg = <1>;
remote-endpoint = <&mipi_in_vopb>;
};
};
But I'm happy that /delete-node/ works and seems to be the right thing
to do.
Thanks,
John
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web