blob: cae4af9959d3809f01b9b4c51728b757f1c72c6f [file] [log] [blame]
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001/*
Geoff Levand13a5e302007-06-16 08:05:01 +10002 * PS3 AV backend support.
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08003 *
Geoff Levand13a5e302007-06-16 08:05:01 +10004 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2007 Sony Corp.
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08006 *
Geoff Levand13a5e302007-06-16 08:05:01 +10007 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080010 *
Geoff Levand13a5e302007-06-16 08:05:01 +100011 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080015 *
Geoff Levand13a5e302007-06-16 08:05:01 +100016 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080019 */
20
Geoff Levand13a5e302007-06-16 08:05:01 +100021#include <linux/kernel.h>
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080022#include <linux/module.h>
23#include <linux/delay.h>
24#include <linux/notifier.h>
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080025#include <linux/ioctl.h>
Geert Uytterhoevenef596c62007-03-10 00:05:38 +010026
27#include <asm/firmware.h>
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080028#include <asm/ps3av.h>
29#include <asm/ps3.h>
30
31#include "vuart.h"
32
33#define BUFSIZE 4096 /* vuart buf size */
34#define PS3AV_BUF_SIZE 512 /* max packet size */
35
36static int timeout = 5000; /* in msec ( 5 sec ) */
37module_param(timeout, int, 0644);
38
Geert Uytterhoevenfffe52e2007-05-02 14:48:35 +020039static struct ps3av {
Geert Uytterhoevenfffe52e2007-05-02 14:48:35 +020040 struct mutex mutex;
41 struct work_struct work;
42 struct completion done;
43 struct workqueue_struct *wq;
44 int open_count;
Geoff Levand13a5e302007-06-16 08:05:01 +100045 struct ps3_system_bus_device *dev;
Geert Uytterhoevenfffe52e2007-05-02 14:48:35 +020046
47 int region;
48 struct ps3av_pkt_av_get_hw_conf av_hw_conf;
49 u32 av_port[PS3AV_AV_PORT_MAX + PS3AV_OPT_PORT_MAX];
50 u32 opt_port[PS3AV_OPT_PORT_MAX];
51 u32 head[PS3AV_HEAD_MAX];
52 u32 audio_port;
53 int ps3av_mode;
54 int ps3av_mode_old;
Geoff Levand13a5e302007-06-16 08:05:01 +100055 union {
56 struct ps3av_reply_hdr reply_hdr;
57 u8 raw[PS3AV_BUF_SIZE];
58 } recv_buf;
59 void (*flip_ctl)(int on, void *data);
60 void *flip_data;
61} *ps3av;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -080062
63/* color space */
64#define YUV444 PS3AV_CMD_VIDEO_CS_YUV444_8
65#define RGB8 PS3AV_CMD_VIDEO_CS_RGB_8
66/* format */
67#define XRGB PS3AV_CMD_VIDEO_FMT_X8R8G8B8
68/* aspect */
69#define A_N PS3AV_CMD_AV_ASPECT_4_3
70#define A_W PS3AV_CMD_AV_ASPECT_16_9
71static const struct avset_video_mode {
72 u32 cs;
73 u32 fmt;
74 u32 vid;
75 u32 aspect;
76 u32 x;
77 u32 y;
78 u32 interlace;
79 u32 freq;
80} video_mode_table[] = {
81 { 0, }, /* auto */
82 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_480I, A_N, 720, 480, 1, 60},
83 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_480P, A_N, 720, 480, 0, 60},
84 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_720P_60HZ, A_N, 1280, 720, 0, 60},
85 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_1080I_60HZ, A_W, 1920, 1080, 1, 60},
86 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_1080P_60HZ, A_W, 1920, 1080, 0, 60},
87 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_576I, A_N, 720, 576, 1, 50},
88 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_576P, A_N, 720, 576, 0, 50},
89 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_720P_50HZ, A_N, 1280, 720, 0, 50},
90 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_1080I_50HZ, A_W, 1920, 1080, 1, 50},
91 {YUV444, XRGB, PS3AV_CMD_VIDEO_VID_1080P_50HZ, A_W, 1920, 1080, 0, 50},
92 { RGB8, XRGB, PS3AV_CMD_VIDEO_VID_WXGA, A_W, 1280, 768, 0, 60},
93 { RGB8, XRGB, PS3AV_CMD_VIDEO_VID_SXGA, A_N, 1280, 1024, 0, 60},
94 { RGB8, XRGB, PS3AV_CMD_VIDEO_VID_WUXGA, A_W, 1920, 1200, 0, 60},
95};
96
97/* supported CIDs */
98static u32 cmd_table[] = {
99 /* init */
100 PS3AV_CID_AV_INIT,
101 PS3AV_CID_AV_FIN,
102 PS3AV_CID_VIDEO_INIT,
103 PS3AV_CID_AUDIO_INIT,
104
105 /* set */
106 PS3AV_CID_AV_ENABLE_EVENT,
107 PS3AV_CID_AV_DISABLE_EVENT,
108
109 PS3AV_CID_AV_VIDEO_CS,
110 PS3AV_CID_AV_VIDEO_MUTE,
111 PS3AV_CID_AV_VIDEO_DISABLE_SIG,
112 PS3AV_CID_AV_AUDIO_PARAM,
113 PS3AV_CID_AV_AUDIO_MUTE,
114 PS3AV_CID_AV_HDMI_MODE,
115 PS3AV_CID_AV_TV_MUTE,
116
117 PS3AV_CID_VIDEO_MODE,
118 PS3AV_CID_VIDEO_FORMAT,
119 PS3AV_CID_VIDEO_PITCH,
120
121 PS3AV_CID_AUDIO_MODE,
122 PS3AV_CID_AUDIO_MUTE,
123 PS3AV_CID_AUDIO_ACTIVE,
124 PS3AV_CID_AUDIO_INACTIVE,
125 PS3AV_CID_AVB_PARAM,
126
127 /* get */
128 PS3AV_CID_AV_GET_HW_CONF,
129 PS3AV_CID_AV_GET_MONITOR_INFO,
130
131 /* event */
132 PS3AV_CID_EVENT_UNPLUGGED,
133 PS3AV_CID_EVENT_PLUGGED,
134 PS3AV_CID_EVENT_HDCP_DONE,
135 PS3AV_CID_EVENT_HDCP_FAIL,
136 PS3AV_CID_EVENT_HDCP_AUTH,
137 PS3AV_CID_EVENT_HDCP_ERROR,
138
139 0
140};
141
142#define PS3AV_EVENT_CMD_MASK 0x10000000
143#define PS3AV_EVENT_ID_MASK 0x0000ffff
144#define PS3AV_CID_MASK 0xffffffff
145#define PS3AV_REPLY_BIT 0x80000000
146
147#define ps3av_event_get_port_id(cid) ((cid >> 16) & 0xff)
148
149static u32 *ps3av_search_cmd_table(u32 cid, u32 mask)
150{
151 u32 *table;
152 int i;
153
154 table = cmd_table;
155 for (i = 0;; table++, i++) {
156 if ((*table & mask) == (cid & mask))
157 break;
158 if (*table == 0)
159 return NULL;
160 }
161 return table;
162}
163
164static int ps3av_parse_event_packet(const struct ps3av_reply_hdr *hdr)
165{
166 u32 *table;
167
168 if (hdr->cid & PS3AV_EVENT_CMD_MASK) {
169 table = ps3av_search_cmd_table(hdr->cid, PS3AV_EVENT_CMD_MASK);
170 if (table)
Geoff Levand13a5e302007-06-16 08:05:01 +1000171 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800172 "recv event packet cid:%08x port:0x%x size:%d\n",
173 hdr->cid, ps3av_event_get_port_id(hdr->cid),
174 hdr->size);
175 else
176 printk(KERN_ERR
177 "%s: failed event packet, cid:%08x size:%d\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200178 __func__, hdr->cid, hdr->size);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800179 return 1; /* receive event packet */
180 }
181 return 0;
182}
183
Geoff Levand13a5e302007-06-16 08:05:01 +1000184
185#define POLLING_INTERVAL 25 /* in msec */
186
187static int ps3av_vuart_write(struct ps3_system_bus_device *dev,
188 const void *buf, unsigned long size)
189{
190 int error;
191 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__);
192 error = ps3_vuart_write(dev, buf, size);
193 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
194 return error ? error : size;
195}
196
197static int ps3av_vuart_read(struct ps3_system_bus_device *dev, void *buf,
198 unsigned long size, int timeout)
199{
200 int error;
201 int loopcnt = 0;
202
203 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__);
204 timeout = (timeout + POLLING_INTERVAL - 1) / POLLING_INTERVAL;
205 while (loopcnt++ <= timeout) {
206 error = ps3_vuart_read(dev, buf, size);
207 if (!error)
208 return size;
209 if (error != -EAGAIN) {
210 printk(KERN_ERR "%s: ps3_vuart_read failed %d\n",
211 __func__, error);
212 return error;
213 }
214 msleep(POLLING_INTERVAL);
215 }
216 return -EWOULDBLOCK;
217}
218
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800219static int ps3av_send_cmd_pkt(const struct ps3av_send_hdr *send_buf,
220 struct ps3av_reply_hdr *recv_buf, int write_len,
221 int read_len)
222{
223 int res;
224 u32 cmd;
225 int event;
226
Geoff Levand13a5e302007-06-16 08:05:01 +1000227 if (!ps3av)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800228 return -ENODEV;
229
230 /* send pkt */
Geoff Levand13a5e302007-06-16 08:05:01 +1000231 res = ps3av_vuart_write(ps3av->dev, send_buf, write_len);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800232 if (res < 0) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000233 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800234 "%s: ps3av_vuart_write() failed (result=%d)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200235 __func__, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800236 return res;
237 }
238
239 /* recv pkt */
240 cmd = send_buf->cid;
241 do {
242 /* read header */
Geoff Levand13a5e302007-06-16 08:05:01 +1000243 res = ps3av_vuart_read(ps3av->dev, recv_buf, PS3AV_HDR_SIZE,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800244 timeout);
245 if (res != PS3AV_HDR_SIZE) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000246 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800247 "%s: ps3av_vuart_read() failed (result=%d)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200248 __func__, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800249 return res;
250 }
251
252 /* read body */
Geoff Levand13a5e302007-06-16 08:05:01 +1000253 res = ps3av_vuart_read(ps3av->dev, &recv_buf->cid,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800254 recv_buf->size, timeout);
255 if (res < 0) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000256 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800257 "%s: ps3av_vuart_read() failed (result=%d)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200258 __func__, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800259 return res;
260 }
261 res += PS3AV_HDR_SIZE; /* total len */
262 event = ps3av_parse_event_packet(recv_buf);
263 /* ret > 0 event packet */
264 } while (event);
265
266 if ((cmd | PS3AV_REPLY_BIT) != recv_buf->cid) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000267 dev_dbg(&ps3av->dev->core, "%s: reply err (result=%x)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200268 __func__, recv_buf->cid);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800269 return -EINVAL;
270 }
271
272 return 0;
273}
274
275static int ps3av_process_reply_packet(struct ps3av_send_hdr *cmd_buf,
276 const struct ps3av_reply_hdr *recv_buf,
277 int user_buf_size)
278{
279 int return_len;
280
281 if (recv_buf->version != PS3AV_VERSION) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000282 dev_dbg(&ps3av->dev->core, "reply_packet invalid version:%x\n",
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800283 recv_buf->version);
284 return -EFAULT;
285 }
286 return_len = recv_buf->size + PS3AV_HDR_SIZE;
287 if (return_len > user_buf_size)
288 return_len = user_buf_size;
289 memcpy(cmd_buf, recv_buf, return_len);
290 return 0; /* success */
291}
292
293void ps3av_set_hdr(u32 cid, u16 size, struct ps3av_send_hdr *hdr)
294{
295 hdr->version = PS3AV_VERSION;
296 hdr->size = size - PS3AV_HDR_SIZE;
297 hdr->cid = cid;
298}
299
300int ps3av_do_pkt(u32 cid, u16 send_len, size_t usr_buf_size,
301 struct ps3av_send_hdr *buf)
302{
303 int res = 0;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800304 u32 *table;
305
Geoff Levand13a5e302007-06-16 08:05:01 +1000306 BUG_ON(!ps3av);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800307
Geoff Levand13a5e302007-06-16 08:05:01 +1000308 mutex_lock(&ps3av->mutex);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800309
310 table = ps3av_search_cmd_table(cid, PS3AV_CID_MASK);
311 BUG_ON(!table);
312 BUG_ON(send_len < PS3AV_HDR_SIZE);
313 BUG_ON(usr_buf_size < send_len);
314 BUG_ON(usr_buf_size > PS3AV_BUF_SIZE);
315
316 /* create header */
317 ps3av_set_hdr(cid, send_len, buf);
318
319 /* send packet via vuart */
Geoff Levand13a5e302007-06-16 08:05:01 +1000320 res = ps3av_send_cmd_pkt(buf, &ps3av->recv_buf.reply_hdr, send_len,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800321 usr_buf_size);
322 if (res < 0) {
323 printk(KERN_ERR
324 "%s: ps3av_send_cmd_pkt() failed (result=%d)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200325 __func__, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800326 goto err;
327 }
328
329 /* process reply packet */
Geoff Levand13a5e302007-06-16 08:05:01 +1000330 res = ps3av_process_reply_packet(buf, &ps3av->recv_buf.reply_hdr,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800331 usr_buf_size);
332 if (res < 0) {
333 printk(KERN_ERR "%s: put_return_status() failed (result=%d)\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200334 __func__, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800335 goto err;
336 }
337
Geoff Levand13a5e302007-06-16 08:05:01 +1000338 mutex_unlock(&ps3av->mutex);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800339 return 0;
340
341 err:
Geoff Levand13a5e302007-06-16 08:05:01 +1000342 mutex_unlock(&ps3av->mutex);
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200343 printk(KERN_ERR "%s: failed cid:%x res:%d\n", __func__, cid, res);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800344 return res;
345}
346
347static int ps3av_set_av_video_mute(u32 mute)
348{
349 int i, num_of_av_port, res;
350
Geoff Levand13a5e302007-06-16 08:05:01 +1000351 num_of_av_port = ps3av->av_hw_conf.num_of_hdmi +
352 ps3av->av_hw_conf.num_of_avmulti;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800353 /* video mute on */
354 for (i = 0; i < num_of_av_port; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000355 res = ps3av_cmd_av_video_mute(1, &ps3av->av_port[i], mute);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800356 if (res < 0)
357 return -1;
358 }
359
360 return 0;
361}
362
363static int ps3av_set_video_disable_sig(void)
364{
365 int i, num_of_hdmi_port, num_of_av_port, res;
366
Geoff Levand13a5e302007-06-16 08:05:01 +1000367 num_of_hdmi_port = ps3av->av_hw_conf.num_of_hdmi;
368 num_of_av_port = ps3av->av_hw_conf.num_of_hdmi +
369 ps3av->av_hw_conf.num_of_avmulti;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800370
371 /* tv mute */
372 for (i = 0; i < num_of_hdmi_port; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000373 res = ps3av_cmd_av_tv_mute(ps3av->av_port[i],
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800374 PS3AV_CMD_MUTE_ON);
375 if (res < 0)
376 return -1;
377 }
378 msleep(100);
379
380 /* video mute on */
381 for (i = 0; i < num_of_av_port; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000382 res = ps3av_cmd_av_video_disable_sig(ps3av->av_port[i]);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800383 if (res < 0)
384 return -1;
385 if (i < num_of_hdmi_port) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000386 res = ps3av_cmd_av_tv_mute(ps3av->av_port[i],
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800387 PS3AV_CMD_MUTE_OFF);
388 if (res < 0)
389 return -1;
390 }
391 }
392 msleep(300);
393
394 return 0;
395}
396
397static int ps3av_set_audio_mute(u32 mute)
398{
399 int i, num_of_av_port, num_of_opt_port, res;
400
Geoff Levand13a5e302007-06-16 08:05:01 +1000401 num_of_av_port = ps3av->av_hw_conf.num_of_hdmi +
402 ps3av->av_hw_conf.num_of_avmulti;
403 num_of_opt_port = ps3av->av_hw_conf.num_of_spdif;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800404
405 for (i = 0; i < num_of_av_port; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000406 res = ps3av_cmd_av_audio_mute(1, &ps3av->av_port[i], mute);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800407 if (res < 0)
408 return -1;
409 }
410 for (i = 0; i < num_of_opt_port; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000411 res = ps3av_cmd_audio_mute(1, &ps3av->opt_port[i], mute);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800412 if (res < 0)
413 return -1;
414 }
415
416 return 0;
417}
418
419int ps3av_set_audio_mode(u32 ch, u32 fs, u32 word_bits, u32 format, u32 source)
420{
421 struct ps3av_pkt_avb_param avb_param;
422 int i, num_of_audio, vid, res;
423 struct ps3av_pkt_audio_mode audio_mode;
424 u32 len = 0;
425
Geoff Levand13a5e302007-06-16 08:05:01 +1000426 num_of_audio = ps3av->av_hw_conf.num_of_hdmi +
427 ps3av->av_hw_conf.num_of_avmulti +
428 ps3av->av_hw_conf.num_of_spdif;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800429
430 avb_param.num_of_video_pkt = 0;
431 avb_param.num_of_audio_pkt = PS3AV_AVB_NUM_AUDIO; /* always 0 */
432 avb_param.num_of_av_video_pkt = 0;
Geoff Levand13a5e302007-06-16 08:05:01 +1000433 avb_param.num_of_av_audio_pkt = ps3av->av_hw_conf.num_of_hdmi;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800434
Geoff Levand13a5e302007-06-16 08:05:01 +1000435 vid = video_mode_table[ps3av->ps3av_mode].vid;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800436
437 /* audio mute */
438 ps3av_set_audio_mute(PS3AV_CMD_MUTE_ON);
439
440 /* audio inactive */
Geoff Levand13a5e302007-06-16 08:05:01 +1000441 res = ps3av_cmd_audio_active(0, ps3av->audio_port);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800442 if (res < 0)
Geoff Levand13a5e302007-06-16 08:05:01 +1000443 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800444 "ps3av_cmd_audio_active OFF failed\n");
445
446 /* audio_pkt */
447 for (i = 0; i < num_of_audio; i++) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000448 ps3av_cmd_set_audio_mode(&audio_mode, ps3av->av_port[i], ch,
449 fs, word_bits, format, source);
450 if (i < ps3av->av_hw_conf.num_of_hdmi) {
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800451 /* hdmi only */
452 len += ps3av_cmd_set_av_audio_param(&avb_param.buf[len],
Geoff Levand13a5e302007-06-16 08:05:01 +1000453 ps3av->av_port[i],
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800454 &audio_mode, vid);
455 }
456 /* audio_mode pkt should be sent separately */
457 res = ps3av_cmd_audio_mode(&audio_mode);
458 if (res < 0)
Geoff Levand13a5e302007-06-16 08:05:01 +1000459 dev_dbg(&ps3av->dev->core,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800460 "ps3av_cmd_audio_mode failed, port:%x\n", i);
461 }
462
463 /* send command using avb pkt */
464 len += offsetof(struct ps3av_pkt_avb_param, buf);
465 res = ps3av_cmd_avb_param(&avb_param, len);
466 if (res < 0)
Geoff Levand13a5e302007-06-16 08:05:01 +1000467 dev_dbg(&ps3av->dev->core, "ps3av_cmd_avb_param failed\n");
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800468
469 /* audio mute */
470 ps3av_set_audio_mute(PS3AV_CMD_MUTE_OFF);
471
472 /* audio active */
Geoff Levand13a5e302007-06-16 08:05:01 +1000473 res = ps3av_cmd_audio_active(1, ps3av->audio_port);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800474 if (res < 0)
Geoff Levand13a5e302007-06-16 08:05:01 +1000475 dev_dbg(&ps3av->dev->core,
476 "ps3av_cmd_audio_active ON failed\n");
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800477
478 return 0;
479}
480
481EXPORT_SYMBOL_GPL(ps3av_set_audio_mode);
482
483static int ps3av_set_videomode(void)
484{
485 /* av video mute */
486 ps3av_set_av_video_mute(PS3AV_CMD_MUTE_ON);
487
488 /* wake up ps3avd to do the actual video mode setting */
Geoff Levand13a5e302007-06-16 08:05:01 +1000489 queue_work(ps3av->wq, &ps3av->work);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800490
491 return 0;
492}
493
Masashi Kimoto8ca0bf72007-10-16 01:29:22 -0700494static void ps3av_set_videomode_packet(u32 id)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800495{
496 struct ps3av_pkt_avb_param avb_param;
Masashi Kimoto8ca0bf72007-10-16 01:29:22 -0700497 unsigned int i;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800498 u32 len = 0, av_video_cs;
499 const struct avset_video_mode *video_mode;
500 int res;
501
502 video_mode = &video_mode_table[id & PS3AV_MODE_MASK];
503
504 avb_param.num_of_video_pkt = PS3AV_AVB_NUM_VIDEO; /* num of head */
505 avb_param.num_of_audio_pkt = 0;
Geoff Levand13a5e302007-06-16 08:05:01 +1000506 avb_param.num_of_av_video_pkt = ps3av->av_hw_conf.num_of_hdmi +
507 ps3av->av_hw_conf.num_of_avmulti;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800508 avb_param.num_of_av_audio_pkt = 0;
509
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800510 /* video_pkt */
511 for (i = 0; i < avb_param.num_of_video_pkt; i++)
512 len += ps3av_cmd_set_video_mode(&avb_param.buf[len],
Geoff Levand13a5e302007-06-16 08:05:01 +1000513 ps3av->head[i], video_mode->vid,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800514 video_mode->fmt, id);
515 /* av_video_pkt */
516 for (i = 0; i < avb_param.num_of_av_video_pkt; i++) {
517 if (id & PS3AV_MODE_DVI || id & PS3AV_MODE_RGB)
518 av_video_cs = RGB8;
519 else
520 av_video_cs = video_mode->cs;
521#ifndef PS3AV_HDMI_YUV
Geoff Levand13a5e302007-06-16 08:05:01 +1000522 if (ps3av->av_port[i] == PS3AV_CMD_AVPORT_HDMI_0 ||
523 ps3av->av_port[i] == PS3AV_CMD_AVPORT_HDMI_1)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800524 av_video_cs = RGB8; /* use RGB for HDMI */
525#endif
526 len += ps3av_cmd_set_av_video_cs(&avb_param.buf[len],
Geoff Levand13a5e302007-06-16 08:05:01 +1000527 ps3av->av_port[i],
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800528 video_mode->vid, av_video_cs,
529 video_mode->aspect, id);
530 }
531 /* send command using avb pkt */
532 len += offsetof(struct ps3av_pkt_avb_param, buf);
533 res = ps3av_cmd_avb_param(&avb_param, len);
534 if (res == PS3AV_STATUS_NO_SYNC_HEAD)
535 printk(KERN_WARNING
536 "%s: Command failed. Please try your request again. \n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200537 __func__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800538 else if (res)
Geoff Levand13a5e302007-06-16 08:05:01 +1000539 dev_dbg(&ps3av->dev->core, "ps3av_cmd_avb_param failed\n");
Masashi Kimoto8ca0bf72007-10-16 01:29:22 -0700540}
541
542static void ps3av_set_videomode_cont(u32 id, u32 old_id)
543{
544 static int vesa = 0;
545 int res;
546
547 /* video signal off */
548 ps3av_set_video_disable_sig();
549
550 /*
551 * AV backend needs non-VESA mode setting at least one time
552 * when VESA mode is used.
553 */
554 if (vesa == 0 && (id & PS3AV_MODE_MASK) >= 11) {
555 /* vesa mode */
556 ps3av_set_videomode_packet(2); /* 480P */
557 }
558 vesa = 1;
559
560 /* Retail PS3 product doesn't support this */
561 if (id & PS3AV_MODE_HDCP_OFF) {
562 res = ps3av_cmd_av_hdmi_mode(PS3AV_CMD_AV_HDMI_HDCP_OFF);
563 if (res == PS3AV_STATUS_UNSUPPORTED_HDMI_MODE)
564 dev_dbg(&ps3av->dev->core, "Not supported\n");
565 else if (res)
566 dev_dbg(&ps3av->dev->core,
567 "ps3av_cmd_av_hdmi_mode failed\n");
568 } else if (old_id & PS3AV_MODE_HDCP_OFF) {
569 res = ps3av_cmd_av_hdmi_mode(PS3AV_CMD_AV_HDMI_MODE_NORMAL);
570 if (res < 0 && res != PS3AV_STATUS_UNSUPPORTED_HDMI_MODE)
571 dev_dbg(&ps3av->dev->core,
572 "ps3av_cmd_av_hdmi_mode failed\n");
573 }
574
575 ps3av_set_videomode_packet(id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800576
577 msleep(1500);
578 /* av video mute */
579 ps3av_set_av_video_mute(PS3AV_CMD_MUTE_OFF);
580}
581
Geert Uytterhoeven5caf5db2007-05-02 14:48:33 +0200582static void ps3avd(struct work_struct *work)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800583{
Geoff Levand13a5e302007-06-16 08:05:01 +1000584 ps3av_set_videomode_cont(ps3av->ps3av_mode, ps3av->ps3av_mode_old);
585 complete(&ps3av->done);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800586}
587
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700588#define SHIFT_50 0
589#define SHIFT_60 4
590#define SHIFT_VESA 8
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800591
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700592static const struct {
593 unsigned mask : 19;
594 unsigned id : 4;
595} ps3av_preferred_modes[] = {
596 { .mask = PS3AV_RESBIT_WUXGA << SHIFT_VESA, .id = 13 },
597 { .mask = PS3AV_RESBIT_1920x1080P << SHIFT_60, .id = 5 },
598 { .mask = PS3AV_RESBIT_1920x1080P << SHIFT_50, .id = 10 },
599 { .mask = PS3AV_RESBIT_1920x1080I << SHIFT_60, .id = 4 },
600 { .mask = PS3AV_RESBIT_1920x1080I << SHIFT_50, .id = 9 },
601 { .mask = PS3AV_RESBIT_SXGA << SHIFT_VESA, .id = 12 },
602 { .mask = PS3AV_RESBIT_WXGA << SHIFT_VESA, .id = 11 },
603 { .mask = PS3AV_RESBIT_1280x720P << SHIFT_60, .id = 3 },
604 { .mask = PS3AV_RESBIT_1280x720P << SHIFT_50, .id = 8 },
605 { .mask = PS3AV_RESBIT_720x480P << SHIFT_60, .id = 2 },
606 { .mask = PS3AV_RESBIT_720x576P << SHIFT_50, .id = 7 },
607};
608
609static int ps3av_resbit2id(u32 res_50, u32 res_60, u32 res_vesa)
610{
611 unsigned int i;
612 u32 res_all;
613
614 /*
615 * We mask off the resolution bits we care about and combine the
616 * results in one bitfield, so make sure there's no overlap
617 */
618 BUILD_BUG_ON(PS3AV_RES_MASK_50 << SHIFT_50 &
619 PS3AV_RES_MASK_60 << SHIFT_60);
620 BUILD_BUG_ON(PS3AV_RES_MASK_50 << SHIFT_50 &
621 PS3AV_RES_MASK_VESA << SHIFT_VESA);
622 BUILD_BUG_ON(PS3AV_RES_MASK_60 << SHIFT_60 &
623 PS3AV_RES_MASK_VESA << SHIFT_VESA);
624 res_all = (res_50 & PS3AV_RES_MASK_50) << SHIFT_50 |
625 (res_60 & PS3AV_RES_MASK_60) << SHIFT_60 |
626 (res_vesa & PS3AV_RES_MASK_VESA) << SHIFT_VESA;
627
628 if (!res_all)
629 return 0;
630
631 for (i = 0; i < ARRAY_SIZE(ps3av_preferred_modes); i++)
632 if (res_all & ps3av_preferred_modes[i].mask)
633 return ps3av_preferred_modes[i].id;
634
635 return 0;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800636}
637
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700638static int ps3av_hdmi_get_id(struct ps3av_info_monitor *info)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800639{
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700640 int id;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800641
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800642 /* check native resolution */
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700643 id = ps3av_resbit2id(info->res_50.native, info->res_60.native,
644 info->res_vesa.native);
645 if (id) {
646 pr_debug("%s: Using native mode %d\n", __func__, id);
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700647 return id;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800648 }
649
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700650 /* check supported resolutions */
651 id = ps3av_resbit2id(info->res_50.res_bits, info->res_60.res_bits,
652 info->res_vesa.res_bits);
653 if (id) {
654 pr_debug("%s: Using supported mode %d\n", __func__, id);
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700655 return id;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800656 }
657
Geoff Levand13a5e302007-06-16 08:05:01 +1000658 if (ps3av->region & PS3AV_REGION_60)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700659 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800660 else
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700661 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_50;
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700662 pr_debug("%s: Using default mode %d\n", __func__, id);
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700663 return id;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800664}
665
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700666static void ps3av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info *monitor_info)
667{
668 const struct ps3av_info_monitor *info = &monitor_info->info;
669 const struct ps3av_info_audio *audio = info->audio;
670 char id[sizeof(info->monitor_id)*3+1];
671 int i;
672
673 pr_debug("Monitor Info: size %u\n", monitor_info->send_hdr.size);
674
675 pr_debug("avport: %02x\n", info->avport);
676 for (i = 0; i < sizeof(info->monitor_id); i++)
677 sprintf(&id[i*3], " %02x", info->monitor_id[i]);
678 pr_debug("monitor_id: %s\n", id);
679 pr_debug("monitor_type: %02x\n", info->monitor_type);
680 pr_debug("monitor_name: %.*s\n", (int)sizeof(info->monitor_name),
681 info->monitor_name);
682
683 /* resolution */
684 pr_debug("resolution_60: bits: %08x native: %08x\n",
685 info->res_60.res_bits, info->res_60.native);
686 pr_debug("resolution_50: bits: %08x native: %08x\n",
687 info->res_50.res_bits, info->res_50.native);
688 pr_debug("resolution_other: bits: %08x native: %08x\n",
689 info->res_other.res_bits, info->res_other.native);
690 pr_debug("resolution_vesa: bits: %08x native: %08x\n",
691 info->res_vesa.res_bits, info->res_vesa.native);
692
693 /* color space */
694 pr_debug("color space rgb: %02x\n", info->cs.rgb);
695 pr_debug("color space yuv444: %02x\n", info->cs.yuv444);
696 pr_debug("color space yuv422: %02x\n", info->cs.yuv422);
697
698 /* color info */
699 pr_debug("color info red: X %04x Y %04x\n", info->color.red_x,
700 info->color.red_y);
701 pr_debug("color info green: X %04x Y %04x\n", info->color.green_x,
702 info->color.green_y);
703 pr_debug("color info blue: X %04x Y %04x\n", info->color.blue_x,
704 info->color.blue_y);
705 pr_debug("color info white: X %04x Y %04x\n", info->color.white_x,
706 info->color.white_y);
707 pr_debug("color info gamma: %08x\n", info->color.gamma);
708
709 /* other info */
710 pr_debug("supported_AI: %02x\n", info->supported_ai);
711 pr_debug("speaker_info: %02x\n", info->speaker_info);
712 pr_debug("num of audio: %02x\n", info->num_of_audio_block);
713
714 /* audio block */
715 for (i = 0; i < info->num_of_audio_block; i++) {
716 pr_debug("audio[%d] type: %02x max_ch: %02x fs: %02x sbit: "
717 "%02x\n",
718 i, audio->type, audio->max_num_of_ch, audio->fs,
719 audio->sbit);
720 audio++;
721 }
722}
723
Geert Uytterhoeven57f70c62007-10-16 01:29:42 -0700724static const struct ps3av_monitor_quirk {
725 const char *monitor_name;
726 u32 clear_60, clear_50, clear_vesa;
727} ps3av_monitor_quirks[] = {
728 {
729 .monitor_name = "DELL 2007WFP",
730 .clear_60 = PS3AV_RESBIT_1920x1080I
731 }, {
732 .monitor_name = "L226WTQ",
733 .clear_60 = PS3AV_RESBIT_1920x1080I |
734 PS3AV_RESBIT_1920x1080P
735 }, {
736 .monitor_name = "SyncMaster",
737 .clear_60 = PS3AV_RESBIT_1920x1080I
738 }
739};
740
741static void ps3av_fixup_monitor_info(struct ps3av_info_monitor *info)
742{
743 unsigned int i;
744 const struct ps3av_monitor_quirk *quirk;
745
746 for (i = 0; i < ARRAY_SIZE(ps3av_monitor_quirks); i++) {
747 quirk = &ps3av_monitor_quirks[i];
748 if (!strncmp(info->monitor_name, quirk->monitor_name,
749 sizeof(info->monitor_name))) {
750 pr_info("%s: Applying quirk for %s\n", __func__,
751 quirk->monitor_name);
752 info->res_60.res_bits &= ~quirk->clear_60;
753 info->res_60.native &= ~quirk->clear_60;
754 info->res_50.res_bits &= ~quirk->clear_50;
755 info->res_50.native &= ~quirk->clear_50;
756 info->res_vesa.res_bits &= ~quirk->clear_vesa;
757 info->res_vesa.native &= ~quirk->clear_vesa;
758 break;
759 }
760 }
761}
762
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800763static int ps3av_auto_videomode(struct ps3av_pkt_av_get_hw_conf *av_hw_conf,
764 int boot)
765{
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700766 int i, res, id = 0, dvi = 0, rgb = 0;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800767 struct ps3av_pkt_av_get_monitor_info monitor_info;
768 struct ps3av_info_monitor *info;
769
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700770 /* get mode id for hdmi */
Geert Uytterhoeven101aa562007-10-16 01:29:41 -0700771 for (i = 0; i < av_hw_conf->num_of_hdmi && !id; i++) {
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800772 res = ps3av_cmd_video_get_monitor_info(&monitor_info,
773 PS3AV_CMD_AVPORT_HDMI_0 +
774 i);
775 if (res < 0)
776 return -1;
777
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700778 ps3av_monitor_info_dump(&monitor_info);
Geert Uytterhoeven101aa562007-10-16 01:29:41 -0700779
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800780 info = &monitor_info.info;
Geert Uytterhoeven57f70c62007-10-16 01:29:42 -0700781 ps3av_fixup_monitor_info(info);
782
Geert Uytterhoeven101aa562007-10-16 01:29:41 -0700783 switch (info->monitor_type) {
784 case PS3AV_MONITOR_TYPE_DVI:
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800785 dvi = PS3AV_MODE_DVI;
Geert Uytterhoeven101aa562007-10-16 01:29:41 -0700786 /* fall through */
787 case PS3AV_MONITOR_TYPE_HDMI:
788 id = ps3av_hdmi_get_id(info);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800789 break;
790 }
791 }
792
Geert Uytterhoeven101aa562007-10-16 01:29:41 -0700793 if (!id) {
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800794 /* no HDMI interface or HDMI is off */
Geoff Levand13a5e302007-06-16 08:05:01 +1000795 if (ps3av->region & PS3AV_REGION_60)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700796 id = PS3AV_DEFAULT_AVMULTI_MODE_ID_REG_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800797 else
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700798 id = PS3AV_DEFAULT_AVMULTI_MODE_ID_REG_50;
Geoff Levand13a5e302007-06-16 08:05:01 +1000799 if (ps3av->region & PS3AV_REGION_RGB)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800800 rgb = PS3AV_MODE_RGB;
Geert Uytterhoevenfd562112007-10-16 01:29:42 -0700801 pr_debug("%s: Using avmulti mode %d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800802 } else if (boot) {
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700803 /* HDMI: using DEFAULT HDMI_MODE_ID while booting up */
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800804 info = &monitor_info.info;
Geoff Levand13a5e302007-06-16 08:05:01 +1000805 if (ps3av->region & PS3AV_REGION_60) {
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800806 if (info->res_60.res_bits & PS3AV_RESBIT_720x480P)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700807 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800808 else if (info->res_50.res_bits & PS3AV_RESBIT_720x576P)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700809 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_50;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800810 else {
811 /* default */
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700812 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800813 }
814 } else {
815 if (info->res_50.res_bits & PS3AV_RESBIT_720x576P)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700816 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_50;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800817 else if (info->res_60.res_bits & PS3AV_RESBIT_720x480P)
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700818 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800819 else {
820 /* default */
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700821 id = PS3AV_DEFAULT_HDMI_MODE_ID_REG_50;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800822 }
823 }
824 }
825
Geert Uytterhoeven71a27fe2007-10-16 01:29:41 -0700826 return id | dvi | rgb;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800827}
828
829static int ps3av_get_hw_conf(struct ps3av *ps3av)
830{
831 int i, j, k, res;
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700832 const struct ps3av_pkt_av_get_hw_conf *hw_conf;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800833
834 /* get av_hw_conf */
835 res = ps3av_cmd_av_get_hw_conf(&ps3av->av_hw_conf);
836 if (res < 0)
837 return -1;
838
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700839 hw_conf = &ps3av->av_hw_conf;
840 pr_debug("av_h_conf: num of hdmi: %u\n", hw_conf->num_of_hdmi);
841 pr_debug("av_h_conf: num of avmulti: %u\n", hw_conf->num_of_avmulti);
842 pr_debug("av_h_conf: num of spdif: %u\n", hw_conf->num_of_spdif);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800843
844 for (i = 0; i < PS3AV_HEAD_MAX; i++)
845 ps3av->head[i] = PS3AV_CMD_VIDEO_HEAD_A + i;
846 for (i = 0; i < PS3AV_OPT_PORT_MAX; i++)
847 ps3av->opt_port[i] = PS3AV_CMD_AVPORT_SPDIF_0 + i;
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700848 for (i = 0; i < hw_conf->num_of_hdmi; i++)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800849 ps3av->av_port[i] = PS3AV_CMD_AVPORT_HDMI_0 + i;
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700850 for (j = 0; j < hw_conf->num_of_avmulti; j++)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800851 ps3av->av_port[i + j] = PS3AV_CMD_AVPORT_AVMULTI_0 + j;
Geert Uytterhoeveneea820a2007-10-16 01:29:40 -0700852 for (k = 0; k < hw_conf->num_of_spdif; k++)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800853 ps3av->av_port[i + j + k] = PS3AV_CMD_AVPORT_SPDIF_0 + k;
854
855 /* set all audio port */
856 ps3av->audio_port = PS3AV_CMD_AUDIO_PORT_HDMI_0
857 | PS3AV_CMD_AUDIO_PORT_HDMI_1
858 | PS3AV_CMD_AUDIO_PORT_AVMULTI_0
859 | PS3AV_CMD_AUDIO_PORT_SPDIF_0 | PS3AV_CMD_AUDIO_PORT_SPDIF_1;
860
861 return 0;
862}
863
864/* set mode using id */
865int ps3av_set_video_mode(u32 id, int boot)
866{
867 int size;
868 u32 option;
869
870 size = ARRAY_SIZE(video_mode_table);
871 if ((id & PS3AV_MODE_MASK) > size - 1 || id < 0) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000872 dev_dbg(&ps3av->dev->core, "%s: error id :%d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800873 return -EINVAL;
874 }
875
876 /* auto mode */
877 option = id & ~PS3AV_MODE_MASK;
878 if ((id & PS3AV_MODE_MASK) == 0) {
Geoff Levand13a5e302007-06-16 08:05:01 +1000879 id = ps3av_auto_videomode(&ps3av->av_hw_conf, boot);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800880 if (id < 1) {
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200881 printk(KERN_ERR "%s: invalid id :%d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800882 return -EINVAL;
883 }
884 id |= option;
885 }
886
887 /* set videomode */
Geoff Levand13a5e302007-06-16 08:05:01 +1000888 wait_for_completion(&ps3av->done);
889 ps3av->ps3av_mode_old = ps3av->ps3av_mode;
890 ps3av->ps3av_mode = id;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800891 if (ps3av_set_videomode())
Geoff Levand13a5e302007-06-16 08:05:01 +1000892 ps3av->ps3av_mode = ps3av->ps3av_mode_old;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800893
894 return 0;
895}
896
897EXPORT_SYMBOL_GPL(ps3av_set_video_mode);
898
Masashi Kimoto64072902007-05-02 14:48:36 +0200899int ps3av_get_auto_mode(int boot)
900{
Geoff Levand13a5e302007-06-16 08:05:01 +1000901 return ps3av_auto_videomode(&ps3av->av_hw_conf, boot);
Masashi Kimoto64072902007-05-02 14:48:36 +0200902}
903
904EXPORT_SYMBOL_GPL(ps3av_get_auto_mode);
905
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800906int ps3av_set_mode(u32 id, int boot)
907{
908 int res;
909
910 res = ps3av_set_video_mode(id, boot);
911 if (res)
912 return res;
913
914 res = ps3av_set_audio_mode(PS3AV_CMD_AUDIO_NUM_OF_CH_2,
915 PS3AV_CMD_AUDIO_FS_48K,
916 PS3AV_CMD_AUDIO_WORD_BITS_16,
917 PS3AV_CMD_AUDIO_FORMAT_PCM,
918 PS3AV_CMD_AUDIO_SOURCE_SERIAL);
919 if (res)
920 return res;
921
922 return 0;
923}
924
925EXPORT_SYMBOL_GPL(ps3av_set_mode);
926
927int ps3av_get_mode(void)
928{
Geoff Levand13a5e302007-06-16 08:05:01 +1000929 return ps3av ? ps3av->ps3av_mode : 0;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800930}
931
932EXPORT_SYMBOL_GPL(ps3av_get_mode);
933
934int ps3av_get_scanmode(int id)
935{
936 int size;
937
938 id = id & PS3AV_MODE_MASK;
939 size = ARRAY_SIZE(video_mode_table);
940 if (id > size - 1 || id < 0) {
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200941 printk(KERN_ERR "%s: invalid mode %d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800942 return -EINVAL;
943 }
944 return video_mode_table[id].interlace;
945}
946
947EXPORT_SYMBOL_GPL(ps3av_get_scanmode);
948
949int ps3av_get_refresh_rate(int id)
950{
951 int size;
952
953 id = id & PS3AV_MODE_MASK;
954 size = ARRAY_SIZE(video_mode_table);
955 if (id > size - 1 || id < 0) {
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200956 printk(KERN_ERR "%s: invalid mode %d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800957 return -EINVAL;
958 }
959 return video_mode_table[id].freq;
960}
961
962EXPORT_SYMBOL_GPL(ps3av_get_refresh_rate);
963
964/* get resolution by video_mode */
965int ps3av_video_mode2res(u32 id, u32 *xres, u32 *yres)
966{
967 int size;
968
969 id = id & PS3AV_MODE_MASK;
970 size = ARRAY_SIZE(video_mode_table);
971 if (id > size - 1 || id < 0) {
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +0200972 printk(KERN_ERR "%s: invalid mode %d\n", __func__, id);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -0800973 return -EINVAL;
974 }
975 *xres = video_mode_table[id].x;
976 *yres = video_mode_table[id].y;
977 return 0;
978}
979
980EXPORT_SYMBOL_GPL(ps3av_video_mode2res);
981
982/* mute */
983int ps3av_video_mute(int mute)
984{
985 return ps3av_set_av_video_mute(mute ? PS3AV_CMD_MUTE_ON
986 : PS3AV_CMD_MUTE_OFF);
987}
988
989EXPORT_SYMBOL_GPL(ps3av_video_mute);
990
991int ps3av_audio_mute(int mute)
992{
993 return ps3av_set_audio_mute(mute ? PS3AV_CMD_MUTE_ON
994 : PS3AV_CMD_MUTE_OFF);
995}
996
997EXPORT_SYMBOL_GPL(ps3av_audio_mute);
998
Geoff Levand13a5e302007-06-16 08:05:01 +1000999void ps3av_register_flip_ctl(void (*flip_ctl)(int on, void *data),
1000 void *flip_data)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001001{
Geoff Levand13a5e302007-06-16 08:05:01 +10001002 mutex_lock(&ps3av->mutex);
1003 ps3av->flip_ctl = flip_ctl;
1004 ps3av->flip_data = flip_data;
1005 mutex_unlock(&ps3av->mutex);
1006}
1007EXPORT_SYMBOL_GPL(ps3av_register_flip_ctl);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001008
Geoff Levand13a5e302007-06-16 08:05:01 +10001009void ps3av_flip_ctl(int on)
1010{
1011 mutex_lock(&ps3av->mutex);
1012 if (ps3av->flip_ctl)
1013 ps3av->flip_ctl(on, ps3av->flip_data);
1014 mutex_unlock(&ps3av->mutex);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001015}
1016
Geoff Levand13a5e302007-06-16 08:05:01 +10001017static int ps3av_probe(struct ps3_system_bus_device *dev)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001018{
1019 int res;
1020 u32 id;
1021
Geoff Levand13a5e302007-06-16 08:05:01 +10001022 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__);
1023 dev_dbg(&dev->core, " timeout=%d\n", timeout);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001024
Geoff Levand13a5e302007-06-16 08:05:01 +10001025 if (ps3av) {
1026 dev_err(&dev->core, "Only one ps3av device is supported\n");
1027 return -EBUSY;
1028 }
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001029
Geoff Levand13a5e302007-06-16 08:05:01 +10001030 ps3av = kzalloc(sizeof(*ps3av), GFP_KERNEL);
1031 if (!ps3av)
Geert Uytterhoeven5caf5db2007-05-02 14:48:33 +02001032 return -ENOMEM;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001033
Geoff Levand13a5e302007-06-16 08:05:01 +10001034 mutex_init(&ps3av->mutex);
1035 ps3av->ps3av_mode = 0;
1036 ps3av->dev = dev;
1037
1038 INIT_WORK(&ps3av->work, ps3avd);
1039 init_completion(&ps3av->done);
1040 complete(&ps3av->done);
1041 ps3av->wq = create_singlethread_workqueue("ps3avd");
1042 if (!ps3av->wq)
1043 goto fail;
1044
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001045 switch (ps3_os_area_get_av_multi_out()) {
1046 case PS3_PARAM_AV_MULTI_OUT_NTSC:
Geoff Levand13a5e302007-06-16 08:05:01 +10001047 ps3av->region = PS3AV_REGION_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001048 break;
1049 case PS3_PARAM_AV_MULTI_OUT_PAL_YCBCR:
1050 case PS3_PARAM_AV_MULTI_OUT_SECAM:
Geoff Levand13a5e302007-06-16 08:05:01 +10001051 ps3av->region = PS3AV_REGION_50;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001052 break;
1053 case PS3_PARAM_AV_MULTI_OUT_PAL_RGB:
Geoff Levand13a5e302007-06-16 08:05:01 +10001054 ps3av->region = PS3AV_REGION_50 | PS3AV_REGION_RGB;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001055 break;
1056 default:
Geoff Levand13a5e302007-06-16 08:05:01 +10001057 ps3av->region = PS3AV_REGION_60;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001058 break;
1059 }
1060
1061 /* init avsetting modules */
1062 res = ps3av_cmd_init();
1063 if (res < 0)
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +02001064 printk(KERN_ERR "%s: ps3av_cmd_init failed %d\n", __func__,
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001065 res);
1066
Geoff Levand13a5e302007-06-16 08:05:01 +10001067 ps3av_get_hw_conf(ps3av);
1068 id = ps3av_auto_videomode(&ps3av->av_hw_conf, 1);
1069 mutex_lock(&ps3av->mutex);
1070 ps3av->ps3av_mode = id;
1071 mutex_unlock(&ps3av->mutex);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001072
Geoff Levand13a5e302007-06-16 08:05:01 +10001073 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001074
1075 return 0;
Geoff Levand13a5e302007-06-16 08:05:01 +10001076
1077fail:
1078 kfree(ps3av);
1079 ps3av = NULL;
1080 return -ENOMEM;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001081}
1082
Geoff Levand13a5e302007-06-16 08:05:01 +10001083static int ps3av_remove(struct ps3_system_bus_device *dev)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001084{
Geoff Levand13a5e302007-06-16 08:05:01 +10001085 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__);
1086 if (ps3av) {
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001087 ps3av_cmd_fin();
Geoff Levand13a5e302007-06-16 08:05:01 +10001088 if (ps3av->wq)
1089 destroy_workqueue(ps3av->wq);
1090 kfree(ps3av);
1091 ps3av = NULL;
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001092 }
1093
Geoff Levand13a5e302007-06-16 08:05:01 +10001094 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001095 return 0;
1096}
1097
Geoff Levand13a5e302007-06-16 08:05:01 +10001098static void ps3av_shutdown(struct ps3_system_bus_device *dev)
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001099{
Geoff Levand13a5e302007-06-16 08:05:01 +10001100 dev_dbg(&dev->core, " -> %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001101 ps3av_remove(dev);
Geoff Levand13a5e302007-06-16 08:05:01 +10001102 dev_dbg(&dev->core, " <- %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001103}
1104
1105static struct ps3_vuart_port_driver ps3av_driver = {
Geoff Levand13a5e302007-06-16 08:05:01 +10001106 .core.match_id = PS3_MATCH_ID_AV_SETTINGS,
1107 .core.core.name = "ps3_av",
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001108 .probe = ps3av_probe,
1109 .remove = ps3av_remove,
1110 .shutdown = ps3av_shutdown,
1111};
1112
1113static int ps3av_module_init(void)
1114{
Geert Uytterhoevenef596c62007-03-10 00:05:38 +01001115 int error;
1116
1117 if (!firmware_has_feature(FW_FEATURE_PS3_LV1))
1118 return -ENODEV;
1119
Geoff Levand13a5e302007-06-16 08:05:01 +10001120 pr_debug(" -> %s:%d\n", __func__, __LINE__);
1121
Geert Uytterhoevenef596c62007-03-10 00:05:38 +01001122 error = ps3_vuart_port_driver_register(&ps3av_driver);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001123 if (error) {
1124 printk(KERN_ERR
1125 "%s: ps3_vuart_port_driver_register failed %d\n",
Geert Uytterhoeven253f04e2007-05-02 14:48:38 +02001126 __func__, error);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001127 return error;
1128 }
1129
Geoff Levand13a5e302007-06-16 08:05:01 +10001130 pr_debug(" <- %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001131 return error;
1132}
1133
1134static void __exit ps3av_module_exit(void)
1135{
Geoff Levand13a5e302007-06-16 08:05:01 +10001136 pr_debug(" -> %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001137 ps3_vuart_port_driver_unregister(&ps3av_driver);
Geoff Levand13a5e302007-06-16 08:05:01 +10001138 pr_debug(" <- %s:%d\n", __func__, __LINE__);
Geert Uytterhoeven11227fd2007-02-12 00:55:16 -08001139}
1140
1141subsys_initcall(ps3av_module_init);
1142module_exit(ps3av_module_exit);
Geoff Levand13a5e302007-06-16 08:05:01 +10001143
1144MODULE_LICENSE("GPL v2");
1145MODULE_DESCRIPTION("PS3 AV Settings Driver");
1146MODULE_AUTHOR("Sony Computer Entertainment Inc.");
1147MODULE_ALIAS(PS3_MODULE_ALIAS_AV_SETTINGS);