diff options
author | Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com> | 2007-01-26 22:08:24 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-02-06 22:03:18 -0500 |
commit | 098e27442713ef7921533130ebba5db6ef64aba6 (patch) | |
tree | 3331d8f845af2b91e65f290f2f40637ed9c69814 /arch | |
parent | 66b44954f8f2129a39d145991c8e635046a71be6 (diff) |
[POWERPC] ps3: get av_multi_out params
Allow the PS3 AV settings driver to access the default video mode stored in
the OS area.
Signed-off-by: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com>
Acked-by: Arnd Bergmann <arnd.bergmann@de.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/ps3/os-area.c | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/arch/powerpc/platforms/ps3/os-area.c b/arch/powerpc/platforms/ps3/os-area.c index b4ac924ada43..6d0d2ac39bd8 100644 --- a/arch/powerpc/platforms/ps3/os-area.c +++ b/arch/powerpc/platforms/ps3/os-area.c | |||
@@ -67,13 +67,6 @@ enum { | |||
67 | }; | 67 | }; |
68 | 68 | ||
69 | enum { | 69 | enum { |
70 | PARAM_AV_MULTI_OUT_NTSC = 0, | ||
71 | PARAM_AV_MULTI_OUT_PAL_RGB = 1, | ||
72 | PARAM_AV_MULTI_OUT_PAL_YCBCR = 2, | ||
73 | PARAM_AV_MULTI_OUT_SECAM = 3, | ||
74 | }; | ||
75 | |||
76 | enum { | ||
77 | PARAM_CTRL_BUTTON_O_IS_YES = 0, | 70 | PARAM_CTRL_BUTTON_O_IS_YES = 0, |
78 | PARAM_CTRL_BUTTON_X_IS_YES = 1, | 71 | PARAM_CTRL_BUTTON_X_IS_YES = 1, |
79 | }; | 72 | }; |
@@ -257,3 +250,13 @@ u64 ps3_os_area_rtc_diff(void) | |||
257 | { | 250 | { |
258 | return saved_params.rtc_diff ? saved_params.rtc_diff : 946684800UL; | 251 | return saved_params.rtc_diff ? saved_params.rtc_diff : 946684800UL; |
259 | } | 252 | } |
253 | |||
254 | /** | ||
255 | * ps3_os_area_get_av_multi_out - Returns the default video mode. | ||
256 | */ | ||
257 | |||
258 | enum ps3_param_av_multi_out ps3_os_area_get_av_multi_out(void) | ||
259 | { | ||
260 | return saved_params.av_multi_out; | ||
261 | } | ||
262 | EXPORT_SYMBOL_GPL(ps3_os_area_get_av_multi_out); | ||