aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ps3/ps3av_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/ps3/ps3av_cmd.c')
-rw-r--r--drivers/ps3/ps3av_cmd.c35
1 files changed, 2 insertions, 33 deletions
diff --git a/drivers/ps3/ps3av_cmd.c b/drivers/ps3/ps3av_cmd.c
index 7c4fb264dda2..f72f5ddf18e4 100644
--- a/drivers/ps3/ps3av_cmd.c
+++ b/drivers/ps3/ps3av_cmd.c
@@ -868,7 +868,7 @@ int ps3av_cmd_avb_param(struct ps3av_pkt_avb_param *avb, u32 send_len)
868{ 868{
869 int res; 869 int res;
870 870
871 ps3fb_flip_ctl(0); /* flip off */ 871 ps3av_flip_ctl(0); /* flip off */
872 872
873 /* avb packet */ 873 /* avb packet */
874 res = ps3av_do_pkt(PS3AV_CID_AVB_PARAM, send_len, sizeof(*avb), 874 res = ps3av_do_pkt(PS3AV_CID_AVB_PARAM, send_len, sizeof(*avb),
@@ -882,7 +882,7 @@ int ps3av_cmd_avb_param(struct ps3av_pkt_avb_param *avb, u32 send_len)
882 res); 882 res);
883 883
884 out: 884 out:
885 ps3fb_flip_ctl(1); /* flip on */ 885 ps3av_flip_ctl(1); /* flip on */
886 return res; 886 return res;
887} 887}
888 888
@@ -1003,34 +1003,3 @@ void ps3av_cmd_av_monitor_info_dump(const struct ps3av_pkt_av_get_monitor_info *
1003 | PS3AV_CMD_AV_LAYOUT_176 \ 1003 | PS3AV_CMD_AV_LAYOUT_176 \
1004 | PS3AV_CMD_AV_LAYOUT_192) 1004 | PS3AV_CMD_AV_LAYOUT_192)
1005 1005
1006/************************* vuart ***************************/
1007
1008#define POLLING_INTERVAL 25 /* in msec */
1009
1010int ps3av_vuart_write(struct ps3_vuart_port_device *dev, const void *buf,
1011 unsigned long size)
1012{
1013 int error = ps3_vuart_write(dev, buf, size);
1014 return error ? error : size;
1015}
1016
1017int ps3av_vuart_read(struct ps3_vuart_port_device *dev, void *buf,
1018 unsigned long size, int timeout)
1019{
1020 int error;
1021 int loopcnt = 0;
1022
1023 timeout = (timeout + POLLING_INTERVAL - 1) / POLLING_INTERVAL;
1024 while (loopcnt++ <= timeout) {
1025 error = ps3_vuart_read(dev, buf, size);
1026 if (!error)
1027 return size;
1028 if (error != -EAGAIN) {
1029 printk(KERN_ERR "%s: ps3_vuart_read failed %d\n",
1030 __func__, error);
1031 return error;
1032 }
1033 msleep(POLLING_INTERVAL);
1034 }
1035 return -EWOULDBLOCK;
1036}