-
Notifications
You must be signed in to change notification settings - Fork 5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dtoverlays: Add VCM option to imx519
VCM is enabled by default, but you can use 'vcm=off' to disable VCM support. Signed-off-by: Lee Jackson <[email protected]>
- Loading branch information
1 parent
3b35454
commit e9b8fd9
Showing
3 changed files
with
65 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Fragment that configures a Sony IMX519 | ||
|
||
cam_node: imx519@1a { | ||
compatible = "sony,imx519"; | ||
reg = <0x1a>; | ||
status = "disabled"; | ||
|
||
clocks = <&cam1_clk>; | ||
clock-names = "xclk"; | ||
|
||
VANA-supply = <&cam1_reg>; /* 2.8v */ | ||
VDIG-supply = <&cam_dummy_reg>; /* 1.8v */ | ||
VDDL-supply = <&cam_dummy_reg>; /* 1.2v */ | ||
|
||
rotation = <0>; | ||
orientation = <2>; | ||
|
||
port { | ||
cam_endpoint: endpoint { | ||
clock-lanes = <0>; | ||
data-lanes = <1 2>; | ||
clock-noncontinuous; | ||
link-frequencies = | ||
/bits/ 64 <493500000>; | ||
}; | ||
}; | ||
}; | ||
|
||
vcm_node: ak7375@c { | ||
compatible = "asahi-kasei,ak7375"; | ||
reg = <0x0c>; | ||
status = "disabled"; | ||
vdd-supply = <&cam1_reg>; | ||
}; |