1Rockchip virtual connector driver
2================================
3
4Required properties:
5- compatible: should be "rockchip,virtual-connector"
6
7patternProperties:
8  "connector-enable": if this connector should be enabled
9  "connector-vp-id": which video port this connector attached to.
10  The connector here should be hdmi0/1, dp0/1, mipi0/1
11  "virtual-connector-count": the number of virtual connector devices.
12  "virtualX-disconnected": Set specified virtual connector to disconnected.
13  The X here should be less than virtual-connector-count.
14
15Example:
16vconn {
17	compatible = "rockchip,virtual-connector";
18	hdmi0-enable;
19	hdmi1-enable;
20	hdmi0-vp-id = <0>;
21	hdmi1-vp-id = <1>;
22	virtual-connector-count = <2>;
23	virtual1-disconnected;
24	status = "okay";
25};
26
27