diff options
author | Scott Jiang <scott.jiang.linux@gmail.com> | 2013-08-08 18:48:22 -0400 |
---|---|---|
committer | Steven Miao <realmz6@gmail.com> | 2013-09-12 22:42:36 -0400 |
commit | e57860929c7d9833275597e5f02810c262a8b6e0 (patch) | |
tree | 143eb407c04ac69fe3ecf1e4e9600b859348438d /arch/blackfin | |
parent | 4940c53d264c749c3b2a288e9e015584328fbb77 (diff) |
bf609: adv7343: add S-Video and Component output support
Signed-off-by: Scott Jiang <scott.jiang.linux@gmail.com>
Diffstat (limited to 'arch/blackfin')
-rw-r--r-- | arch/blackfin/mach-bf609/boards/ezkit.c | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/arch/blackfin/mach-bf609/boards/ezkit.c b/arch/blackfin/mach-bf609/boards/ezkit.c index 663ad5df96a3..d4dcbab70bb7 100644 --- a/arch/blackfin/mach-bf609/boards/ezkit.c +++ b/arch/blackfin/mach-bf609/boards/ezkit.c | |||
@@ -1118,11 +1118,32 @@ static struct v4l2_output adv7343_outputs[] = { | |||
1118 | .std = V4L2_STD_ALL, | 1118 | .std = V4L2_STD_ALL, |
1119 | .capabilities = V4L2_OUT_CAP_STD, | 1119 | .capabilities = V4L2_OUT_CAP_STD, |
1120 | }, | 1120 | }, |
1121 | { | ||
1122 | .index = 1, | ||
1123 | .name = "S-Video", | ||
1124 | .type = V4L2_OUTPUT_TYPE_ANALOG, | ||
1125 | .std = V4L2_STD_ALL, | ||
1126 | .capabilities = V4L2_OUT_CAP_STD, | ||
1127 | }, | ||
1128 | { | ||
1129 | .index = 2, | ||
1130 | .name = "Component", | ||
1131 | .type = V4L2_OUTPUT_TYPE_ANALOG, | ||
1132 | .std = V4L2_STD_ALL, | ||
1133 | .capabilities = V4L2_OUT_CAP_STD, | ||
1134 | }, | ||
1135 | |||
1121 | }; | 1136 | }; |
1122 | 1137 | ||
1123 | static struct disp_route adv7343_routes[] = { | 1138 | static struct disp_route adv7343_routes[] = { |
1124 | { | 1139 | { |
1125 | .output = 0, | 1140 | .output = ADV7343_COMPOSITE_ID, |
1141 | }, | ||
1142 | { | ||
1143 | .output = ADV7343_SVIDEO_ID, | ||
1144 | }, | ||
1145 | { | ||
1146 | .output = ADV7343_COMPONENT_ID, | ||
1126 | }, | 1147 | }, |
1127 | }; | 1148 | }; |
1128 | 1149 | ||