4 * Copyright (C) 2006 Sony Computer Entertainment Inc.
5 * Copyright 2006 Sony Corp.
7 * 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.
11 * 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.
16 * 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
21 #include <linux/kernel.h>
22 #include <linux/slab.h>
23 #include <linux/module.h>
24 #include <linux/interrupt.h>
25 #include <linux/workqueue.h>
26 #include <linux/bitops.h>
29 #include <asm/firmware.h>
30 #include <asm/lv1call.h>
34 MODULE_AUTHOR("Sony Corporation");
35 MODULE_LICENSE("GPL v2");
36 MODULE_DESCRIPTION("PS3 vuart");
39 * vuart - An inter-partition data link service.
40 * port 0: PS3 AV Settings.
41 * port 2: PS3 System Manager.
43 * The vuart provides a bi-directional byte stream data link between logical
44 * partitions. Its primary role is as a communications link between the guest
45 * OS and the system policy module. The current HV does not support any
46 * connections other than those listed.
49 enum {PORT_COUNT
= 3,};
54 PARAM_INTERRUPT_MASK
= 2,
55 PARAM_RX_BUF_SIZE
= 3, /* read only */
56 PARAM_RX_BYTES
= 4, /* read only */
57 PARAM_TX_BUF_SIZE
= 5, /* read only */
58 PARAM_TX_BYTES
= 6, /* read only */
59 PARAM_INTERRUPT_STATUS
= 7, /* read only */
62 enum vuart_interrupt_bit
{
65 INTERRUPT_BIT_DISCONNECT
= 2,
68 enum vuart_interrupt_mask
{
69 INTERRUPT_MASK_TX
= 1,
70 INTERRUPT_MASK_RX
= 2,
71 INTERRUPT_MASK_DISCONNECT
= 4,
75 * struct ps3_vuart_port_priv - private vuart device data.
78 struct ps3_vuart_port_priv
{
83 struct list_head head
;
86 struct ps3_vuart_work work
;
87 unsigned long bytes_held
;
89 struct list_head head
;
91 struct ps3_vuart_stats stats
;
94 static struct ps3_vuart_port_priv
*to_port_priv(
95 struct ps3_system_bus_device
*dev
)
98 BUG_ON(!dev
->driver_priv
);
99 return (struct ps3_vuart_port_priv
*)dev
->driver_priv
;
103 * struct ports_bmp - bitmap indicating ports needing service.
105 * A 256 bit read only bitmap indicating ports needing service. Do not write
106 * to these bits. Must not cross a page boundary.
112 } __attribute__((aligned(32)));
114 #define dump_ports_bmp(_b) _dump_ports_bmp(_b, __func__, __LINE__)
115 static void __maybe_unused
_dump_ports_bmp(
116 const struct ports_bmp
*bmp
, const char *func
, int line
)
118 pr_debug("%s:%d: ports_bmp: %016llxh\n", func
, line
, bmp
->status
);
121 #define dump_port_params(_b) _dump_port_params(_b, __func__, __LINE__)
122 static void __maybe_unused
_dump_port_params(unsigned int port_number
,
123 const char *func
, int line
)
126 static const char *strings
[] = {
140 for (i
= 0; i
< ARRAY_SIZE(strings
); i
++) {
141 result
= lv1_get_virtual_uart_param(port_number
, i
, &value
);
144 pr_debug("%s:%d: port_%u: %s failed: %s\n", func
, line
,
145 port_number
, strings
[i
], ps3_result(result
));
148 pr_debug("%s:%d: port_%u: %s = %lxh\n",
149 func
, line
, port_number
, strings
[i
], value
);
154 int ps3_vuart_get_triggers(struct ps3_system_bus_device
*dev
,
155 struct vuart_triggers
*trig
)
162 result
= lv1_get_virtual_uart_param(dev
->port_number
,
163 PARAM_TX_TRIGGER
, &tx
);
167 dev_dbg(&dev
->core
, "%s:%d: tx_trigger failed: %s\n",
168 __func__
, __LINE__
, ps3_result(result
));
172 result
= lv1_get_virtual_uart_param(dev
->port_number
,
173 PARAM_RX_BUF_SIZE
, &size
);
176 dev_dbg(&dev
->core
, "%s:%d: tx_buf_size failed: %s\n",
177 __func__
, __LINE__
, ps3_result(result
));
181 result
= lv1_get_virtual_uart_param(dev
->port_number
,
182 PARAM_RX_TRIGGER
, &val
);
185 dev_dbg(&dev
->core
, "%s:%d: rx_trigger failed: %s\n",
186 __func__
, __LINE__
, ps3_result(result
));
190 trig
->rx
= size
- val
;
192 dev_dbg(&dev
->core
, "%s:%d: tx %lxh, rx %lxh\n", __func__
, __LINE__
,
198 int ps3_vuart_set_triggers(struct ps3_system_bus_device
*dev
, unsigned int tx
,
204 result
= lv1_set_virtual_uart_param(dev
->port_number
,
205 PARAM_TX_TRIGGER
, tx
);
208 dev_dbg(&dev
->core
, "%s:%d: tx_trigger failed: %s\n",
209 __func__
, __LINE__
, ps3_result(result
));
213 result
= lv1_get_virtual_uart_param(dev
->port_number
,
214 PARAM_RX_BUF_SIZE
, &size
);
217 dev_dbg(&dev
->core
, "%s:%d: tx_buf_size failed: %s\n",
218 __func__
, __LINE__
, ps3_result(result
));
222 result
= lv1_set_virtual_uart_param(dev
->port_number
,
223 PARAM_RX_TRIGGER
, size
- rx
);
226 dev_dbg(&dev
->core
, "%s:%d: rx_trigger failed: %s\n",
227 __func__
, __LINE__
, ps3_result(result
));
231 dev_dbg(&dev
->core
, "%s:%d: tx %xh, rx %xh\n", __func__
, __LINE__
,
237 static int ps3_vuart_get_rx_bytes_waiting(struct ps3_system_bus_device
*dev
,
242 result
= lv1_get_virtual_uart_param(dev
->port_number
,
243 PARAM_RX_BYTES
, bytes_waiting
);
246 dev_dbg(&dev
->core
, "%s:%d: rx_bytes failed: %s\n",
247 __func__
, __LINE__
, ps3_result(result
));
249 dev_dbg(&dev
->core
, "%s:%d: %llxh\n", __func__
, __LINE__
,
255 * ps3_vuart_set_interrupt_mask - Enable/disable the port interrupt sources.
256 * @dev: The struct ps3_system_bus_device instance.
257 * @bmp: Logical OR of enum vuart_interrupt_mask values. A zero bit disables.
260 static int ps3_vuart_set_interrupt_mask(struct ps3_system_bus_device
*dev
,
264 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
266 dev_dbg(&dev
->core
, "%s:%d: %lxh\n", __func__
, __LINE__
, mask
);
268 priv
->interrupt_mask
= mask
;
270 result
= lv1_set_virtual_uart_param(dev
->port_number
,
271 PARAM_INTERRUPT_MASK
, priv
->interrupt_mask
);
274 dev_dbg(&dev
->core
, "%s:%d: interrupt_mask failed: %s\n",
275 __func__
, __LINE__
, ps3_result(result
));
280 static int ps3_vuart_get_interrupt_status(struct ps3_system_bus_device
*dev
,
281 unsigned long *status
)
284 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
287 result
= lv1_get_virtual_uart_param(dev
->port_number
,
288 PARAM_INTERRUPT_STATUS
, &tmp
);
291 dev_dbg(&dev
->core
, "%s:%d: interrupt_status failed: %s\n",
292 __func__
, __LINE__
, ps3_result(result
));
294 *status
= tmp
& priv
->interrupt_mask
;
296 dev_dbg(&dev
->core
, "%s:%d: m %llxh, s %llxh, m&s %lxh\n",
297 __func__
, __LINE__
, priv
->interrupt_mask
, tmp
, *status
);
302 int ps3_vuart_enable_interrupt_tx(struct ps3_system_bus_device
*dev
)
304 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
306 return (priv
->interrupt_mask
& INTERRUPT_MASK_TX
) ? 0
307 : ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
308 | INTERRUPT_MASK_TX
);
311 int ps3_vuart_enable_interrupt_rx(struct ps3_system_bus_device
*dev
)
313 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
315 return (priv
->interrupt_mask
& INTERRUPT_MASK_RX
) ? 0
316 : ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
317 | INTERRUPT_MASK_RX
);
320 int ps3_vuart_enable_interrupt_disconnect(struct ps3_system_bus_device
*dev
)
322 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
324 return (priv
->interrupt_mask
& INTERRUPT_MASK_DISCONNECT
) ? 0
325 : ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
326 | INTERRUPT_MASK_DISCONNECT
);
329 int ps3_vuart_disable_interrupt_tx(struct ps3_system_bus_device
*dev
)
331 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
333 return (priv
->interrupt_mask
& INTERRUPT_MASK_TX
)
334 ? ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
335 & ~INTERRUPT_MASK_TX
) : 0;
338 int ps3_vuart_disable_interrupt_rx(struct ps3_system_bus_device
*dev
)
340 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
342 return (priv
->interrupt_mask
& INTERRUPT_MASK_RX
)
343 ? ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
344 & ~INTERRUPT_MASK_RX
) : 0;
347 int ps3_vuart_disable_interrupt_disconnect(struct ps3_system_bus_device
*dev
)
349 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
351 return (priv
->interrupt_mask
& INTERRUPT_MASK_DISCONNECT
)
352 ? ps3_vuart_set_interrupt_mask(dev
, priv
->interrupt_mask
353 & ~INTERRUPT_MASK_DISCONNECT
) : 0;
357 * ps3_vuart_raw_write - Low level write helper.
358 * @dev: The struct ps3_system_bus_device instance.
360 * Do not call ps3_vuart_raw_write directly, use ps3_vuart_write.
363 static int ps3_vuart_raw_write(struct ps3_system_bus_device
*dev
,
364 const void *buf
, unsigned int bytes
, u64
*bytes_written
)
367 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
369 result
= lv1_write_virtual_uart(dev
->port_number
,
370 ps3_mm_phys_to_lpar(__pa(buf
)), bytes
, bytes_written
);
373 dev_dbg(&dev
->core
, "%s:%d: lv1_write_virtual_uart failed: "
374 "%s\n", __func__
, __LINE__
, ps3_result(result
));
378 priv
->stats
.bytes_written
+= *bytes_written
;
380 dev_dbg(&dev
->core
, "%s:%d: wrote %llxh/%xh=>%lxh\n", __func__
, __LINE__
,
381 *bytes_written
, bytes
, priv
->stats
.bytes_written
);
387 * ps3_vuart_raw_read - Low level read helper.
388 * @dev: The struct ps3_system_bus_device instance.
390 * Do not call ps3_vuart_raw_read directly, use ps3_vuart_read.
393 static int ps3_vuart_raw_read(struct ps3_system_bus_device
*dev
, void *buf
,
394 unsigned int bytes
, u64
*bytes_read
)
397 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
399 dev_dbg(&dev
->core
, "%s:%d: %xh\n", __func__
, __LINE__
, bytes
);
401 result
= lv1_read_virtual_uart(dev
->port_number
,
402 ps3_mm_phys_to_lpar(__pa(buf
)), bytes
, bytes_read
);
405 dev_dbg(&dev
->core
, "%s:%d: lv1_read_virtual_uart failed: %s\n",
406 __func__
, __LINE__
, ps3_result(result
));
410 priv
->stats
.bytes_read
+= *bytes_read
;
412 dev_dbg(&dev
->core
, "%s:%d: read %llxh/%xh=>%lxh\n", __func__
, __LINE__
,
413 *bytes_read
, bytes
, priv
->stats
.bytes_read
);
419 * ps3_vuart_clear_rx_bytes - Discard bytes received.
420 * @dev: The struct ps3_system_bus_device instance.
421 * @bytes: Max byte count to discard, zero = all pending.
423 * Used to clear pending rx interrupt source. Will not block.
426 void ps3_vuart_clear_rx_bytes(struct ps3_system_bus_device
*dev
,
430 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
434 result
= ps3_vuart_get_rx_bytes_waiting(dev
, &bytes_waiting
);
438 bytes
= bytes
? min(bytes
, (unsigned int)bytes_waiting
) : bytes_waiting
;
440 dev_dbg(&dev
->core
, "%s:%d: %u\n", __func__
, __LINE__
, bytes
);
445 /* Add some extra space for recently arrived data. */
449 tmp
= kmalloc(bytes
, GFP_KERNEL
);
454 ps3_vuart_raw_read(dev
, tmp
, bytes
, &bytes_waiting
);
458 /* Don't include these bytes in the stats. */
460 priv
->stats
.bytes_read
-= bytes_waiting
;
462 EXPORT_SYMBOL_GPL(ps3_vuart_clear_rx_bytes
);
465 * struct list_buffer - An element for a port device fifo buffer list.
469 struct list_head link
;
470 const unsigned char *head
;
471 const unsigned char *tail
;
472 unsigned long dbg_number
;
473 unsigned char data
[];
477 * ps3_vuart_write - the entry point for writing data to a port
478 * @dev: The struct ps3_system_bus_device instance.
480 * If the port is idle on entry as much of the incoming data is written to
481 * the port as the port will accept. Otherwise a list buffer is created
482 * and any remaning incoming data is copied to that buffer. The buffer is
483 * then enqueued for transmision via the transmit interrupt.
486 int ps3_vuart_write(struct ps3_system_bus_device
*dev
, const void *buf
,
489 static unsigned long dbg_number
;
491 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
493 struct list_buffer
*lb
;
495 dev_dbg(&dev
->core
, "%s:%d: %u(%xh) bytes\n", __func__
, __LINE__
,
498 spin_lock_irqsave(&priv
->tx_list
.lock
, flags
);
500 if (list_empty(&priv
->tx_list
.head
)) {
503 result
= ps3_vuart_raw_write(dev
, buf
, bytes
, &bytes_written
);
505 spin_unlock_irqrestore(&priv
->tx_list
.lock
, flags
);
509 "%s:%d: ps3_vuart_raw_write failed\n",
514 if (bytes_written
== bytes
) {
515 dev_dbg(&dev
->core
, "%s:%d: wrote %xh bytes\n",
516 __func__
, __LINE__
, bytes
);
520 bytes
-= bytes_written
;
521 buf
+= bytes_written
;
523 spin_unlock_irqrestore(&priv
->tx_list
.lock
, flags
);
525 lb
= kmalloc(sizeof(struct list_buffer
) + bytes
, GFP_KERNEL
);
530 memcpy(lb
->data
, buf
, bytes
);
532 lb
->tail
= lb
->data
+ bytes
;
533 lb
->dbg_number
= ++dbg_number
;
535 spin_lock_irqsave(&priv
->tx_list
.lock
, flags
);
536 list_add_tail(&lb
->link
, &priv
->tx_list
.head
);
537 ps3_vuart_enable_interrupt_tx(dev
);
538 spin_unlock_irqrestore(&priv
->tx_list
.lock
, flags
);
540 dev_dbg(&dev
->core
, "%s:%d: queued buf_%lu, %xh bytes\n",
541 __func__
, __LINE__
, lb
->dbg_number
, bytes
);
545 EXPORT_SYMBOL_GPL(ps3_vuart_write
);
548 * ps3_vuart_queue_rx_bytes - Queue waiting bytes into the buffer list.
549 * @dev: The struct ps3_system_bus_device instance.
550 * @bytes_queued: Number of bytes queued to the buffer list.
552 * Must be called with priv->rx_list.lock held.
555 static int ps3_vuart_queue_rx_bytes(struct ps3_system_bus_device
*dev
,
558 static unsigned long dbg_number
;
560 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
561 struct list_buffer
*lb
;
566 result
= ps3_vuart_get_rx_bytes_waiting(dev
, &bytes
);
575 /* Add some extra space for recently arrived data. */
579 lb
= kmalloc(sizeof(struct list_buffer
) + bytes
, GFP_ATOMIC
);
584 ps3_vuart_raw_read(dev
, lb
->data
, bytes
, &bytes
);
587 lb
->tail
= lb
->data
+ bytes
;
588 lb
->dbg_number
= ++dbg_number
;
590 list_add_tail(&lb
->link
, &priv
->rx_list
.head
);
591 priv
->rx_list
.bytes_held
+= bytes
;
593 dev_dbg(&dev
->core
, "%s:%d: buf_%lu: queued %llxh bytes\n",
594 __func__
, __LINE__
, lb
->dbg_number
, bytes
);
596 *bytes_queued
= bytes
;
602 * ps3_vuart_read - The entry point for reading data from a port.
604 * Queue data waiting at the port, and if enough bytes to satisfy the request
605 * are held in the buffer list those bytes are dequeued and copied to the
606 * caller's buffer. Emptied list buffers are retiered. If the request cannot
607 * be statified by bytes held in the list buffers -EAGAIN is returned.
610 int ps3_vuart_read(struct ps3_system_bus_device
*dev
, void *buf
,
614 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
616 struct list_buffer
*lb
, *n
;
617 unsigned long bytes_read
;
619 dev_dbg(&dev
->core
, "%s:%d: %u(%xh) bytes\n", __func__
, __LINE__
,
622 spin_lock_irqsave(&priv
->rx_list
.lock
, flags
);
624 /* Queue rx bytes here for polled reads. */
626 while (priv
->rx_list
.bytes_held
< bytes
) {
629 result
= ps3_vuart_queue_rx_bytes(dev
, &tmp
);
630 if (result
|| !tmp
) {
631 dev_dbg(&dev
->core
, "%s:%d: starved for %lxh bytes\n",
633 bytes
- priv
->rx_list
.bytes_held
);
634 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
639 list_for_each_entry_safe(lb
, n
, &priv
->rx_list
.head
, link
) {
640 bytes_read
= min((unsigned int)(lb
->tail
- lb
->head
), bytes
);
642 memcpy(buf
, lb
->head
, bytes_read
);
645 priv
->rx_list
.bytes_held
-= bytes_read
;
647 if (bytes_read
< lb
->tail
- lb
->head
) {
648 lb
->head
+= bytes_read
;
649 dev_dbg(&dev
->core
, "%s:%d: buf_%lu: dequeued %lxh "
650 "bytes\n", __func__
, __LINE__
, lb
->dbg_number
,
652 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
656 dev_dbg(&dev
->core
, "%s:%d: buf_%lu: free, dequeued %lxh "
657 "bytes\n", __func__
, __LINE__
, lb
->dbg_number
,
664 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
667 EXPORT_SYMBOL_GPL(ps3_vuart_read
);
670 * ps3_vuart_work - Asynchronous read handler.
673 static void ps3_vuart_work(struct work_struct
*work
)
675 struct ps3_system_bus_device
*dev
=
676 ps3_vuart_work_to_system_bus_dev(work
);
677 struct ps3_vuart_port_driver
*drv
=
678 ps3_system_bus_dev_to_vuart_drv(dev
);
684 int ps3_vuart_read_async(struct ps3_system_bus_device
*dev
, unsigned int bytes
)
686 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
689 if (priv
->rx_list
.work
.trigger
) {
690 dev_dbg(&dev
->core
, "%s:%d: warning, multiple calls\n",
697 spin_lock_irqsave(&priv
->rx_list
.lock
, flags
);
698 if (priv
->rx_list
.bytes_held
>= bytes
) {
699 dev_dbg(&dev
->core
, "%s:%d: schedule_work %xh bytes\n",
700 __func__
, __LINE__
, bytes
);
701 schedule_work(&priv
->rx_list
.work
.work
);
702 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
706 priv
->rx_list
.work
.trigger
= bytes
;
707 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
709 dev_dbg(&dev
->core
, "%s:%d: waiting for %u(%xh) bytes\n", __func__
,
710 __LINE__
, bytes
, bytes
);
714 EXPORT_SYMBOL_GPL(ps3_vuart_read_async
);
716 void ps3_vuart_cancel_async(struct ps3_system_bus_device
*dev
)
718 to_port_priv(dev
)->rx_list
.work
.trigger
= 0;
720 EXPORT_SYMBOL_GPL(ps3_vuart_cancel_async
);
723 * ps3_vuart_handle_interrupt_tx - third stage transmit interrupt handler
725 * Services the transmit interrupt for the port. Writes as much data from the
726 * buffer list as the port will accept. Retires any emptied list buffers and
727 * adjusts the final list buffer state for a partial write.
730 static int ps3_vuart_handle_interrupt_tx(struct ps3_system_bus_device
*dev
)
733 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
735 struct list_buffer
*lb
, *n
;
736 unsigned long bytes_total
= 0;
738 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
740 spin_lock_irqsave(&priv
->tx_list
.lock
, flags
);
742 list_for_each_entry_safe(lb
, n
, &priv
->tx_list
.head
, link
) {
746 result
= ps3_vuart_raw_write(dev
, lb
->head
, lb
->tail
- lb
->head
,
751 "%s:%d: ps3_vuart_raw_write failed\n",
756 bytes_total
+= bytes_written
;
758 if (bytes_written
< lb
->tail
- lb
->head
) {
759 lb
->head
+= bytes_written
;
761 "%s:%d cleared buf_%lu, %llxh bytes\n",
762 __func__
, __LINE__
, lb
->dbg_number
,
767 dev_dbg(&dev
->core
, "%s:%d free buf_%lu\n", __func__
, __LINE__
,
774 ps3_vuart_disable_interrupt_tx(dev
);
776 spin_unlock_irqrestore(&priv
->tx_list
.lock
, flags
);
777 dev_dbg(&dev
->core
, "%s:%d wrote %lxh bytes total\n",
778 __func__
, __LINE__
, bytes_total
);
783 * ps3_vuart_handle_interrupt_rx - third stage receive interrupt handler
785 * Services the receive interrupt for the port. Creates a list buffer and
786 * copies all waiting port data to that buffer and enqueues the buffer in the
787 * buffer list. Buffer list data is dequeued via ps3_vuart_read.
790 static int ps3_vuart_handle_interrupt_rx(struct ps3_system_bus_device
*dev
)
793 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
797 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
799 spin_lock_irqsave(&priv
->rx_list
.lock
, flags
);
800 result
= ps3_vuart_queue_rx_bytes(dev
, &bytes
);
803 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
807 if (priv
->rx_list
.work
.trigger
&& priv
->rx_list
.bytes_held
808 >= priv
->rx_list
.work
.trigger
) {
809 dev_dbg(&dev
->core
, "%s:%d: schedule_work %lxh bytes\n",
810 __func__
, __LINE__
, priv
->rx_list
.work
.trigger
);
811 priv
->rx_list
.work
.trigger
= 0;
812 schedule_work(&priv
->rx_list
.work
.work
);
815 spin_unlock_irqrestore(&priv
->rx_list
.lock
, flags
);
819 static int ps3_vuart_handle_interrupt_disconnect(
820 struct ps3_system_bus_device
*dev
)
822 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
823 BUG_ON("no support");
828 * ps3_vuart_handle_port_interrupt - second stage interrupt handler
830 * Services any pending interrupt types for the port. Passes control to the
831 * third stage type specific interrupt handler. Returns control to the first
832 * stage handler after one iteration.
835 static int ps3_vuart_handle_port_interrupt(struct ps3_system_bus_device
*dev
)
838 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
839 unsigned long status
;
841 result
= ps3_vuart_get_interrupt_status(dev
, &status
);
846 dev_dbg(&dev
->core
, "%s:%d: status: %lxh\n", __func__
, __LINE__
,
849 if (status
& INTERRUPT_MASK_DISCONNECT
) {
850 priv
->stats
.disconnect_interrupts
++;
851 result
= ps3_vuart_handle_interrupt_disconnect(dev
);
853 ps3_vuart_disable_interrupt_disconnect(dev
);
856 if (status
& INTERRUPT_MASK_TX
) {
857 priv
->stats
.tx_interrupts
++;
858 result
= ps3_vuart_handle_interrupt_tx(dev
);
860 ps3_vuart_disable_interrupt_tx(dev
);
863 if (status
& INTERRUPT_MASK_RX
) {
864 priv
->stats
.rx_interrupts
++;
865 result
= ps3_vuart_handle_interrupt_rx(dev
);
867 ps3_vuart_disable_interrupt_rx(dev
);
873 struct vuart_bus_priv
{
874 struct ports_bmp
*bmp
;
876 struct mutex probe_mutex
;
878 struct ps3_system_bus_device
*devices
[PORT_COUNT
];
879 } static vuart_bus_priv
;
882 * ps3_vuart_irq_handler - first stage interrupt handler
884 * Loops finding any interrupting port and its associated instance data.
885 * Passes control to the second stage port specific interrupt handler. Loops
886 * until all outstanding interrupts are serviced.
889 static irqreturn_t
ps3_vuart_irq_handler(int irq
, void *_private
)
891 struct vuart_bus_priv
*bus_priv
= _private
;
898 dump_ports_bmp(bus_priv
->bmp
);
900 port
= (BITS_PER_LONG
- 1) - __ilog2(bus_priv
->bmp
->status
);
902 if (port
== BITS_PER_LONG
)
905 BUG_ON(port
>= PORT_COUNT
);
906 BUG_ON(!bus_priv
->devices
[port
]);
908 ps3_vuart_handle_port_interrupt(bus_priv
->devices
[port
]);
914 static int ps3_vuart_bus_interrupt_get(void)
918 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
920 vuart_bus_priv
.use_count
++;
922 BUG_ON(vuart_bus_priv
.use_count
> 2);
924 if (vuart_bus_priv
.use_count
!= 1)
927 BUG_ON(vuart_bus_priv
.bmp
);
929 vuart_bus_priv
.bmp
= kzalloc(sizeof(struct ports_bmp
), GFP_KERNEL
);
931 if (!vuart_bus_priv
.bmp
) {
932 pr_debug("%s:%d: kzalloc failed.\n", __func__
, __LINE__
);
934 goto fail_bmp_malloc
;
937 result
= ps3_vuart_irq_setup(PS3_BINDING_CPU_ANY
, vuart_bus_priv
.bmp
,
938 &vuart_bus_priv
.virq
);
941 pr_debug("%s:%d: ps3_vuart_irq_setup failed (%d)\n",
942 __func__
, __LINE__
, result
);
947 result
= request_irq(vuart_bus_priv
.virq
, ps3_vuart_irq_handler
,
948 0, "vuart", &vuart_bus_priv
);
951 pr_debug("%s:%d: request_irq failed (%d)\n",
952 __func__
, __LINE__
, result
);
953 goto fail_request_irq
;
956 pr_debug(" <- %s:%d: ok\n", __func__
, __LINE__
);
960 ps3_vuart_irq_destroy(vuart_bus_priv
.virq
);
961 vuart_bus_priv
.virq
= 0;
963 kfree(vuart_bus_priv
.bmp
);
964 vuart_bus_priv
.bmp
= NULL
;
966 vuart_bus_priv
.use_count
--;
967 pr_debug(" <- %s:%d: failed\n", __func__
, __LINE__
);
971 static int ps3_vuart_bus_interrupt_put(void)
973 pr_debug(" -> %s:%d\n", __func__
, __LINE__
);
975 vuart_bus_priv
.use_count
--;
977 BUG_ON(vuart_bus_priv
.use_count
< 0);
979 if (vuart_bus_priv
.use_count
!= 0)
982 free_irq(vuart_bus_priv
.virq
, &vuart_bus_priv
);
984 ps3_vuart_irq_destroy(vuart_bus_priv
.virq
);
985 vuart_bus_priv
.virq
= 0;
987 kfree(vuart_bus_priv
.bmp
);
988 vuart_bus_priv
.bmp
= NULL
;
990 pr_debug(" <- %s:%d\n", __func__
, __LINE__
);
994 static int ps3_vuart_probe(struct ps3_system_bus_device
*dev
)
997 struct ps3_vuart_port_driver
*drv
;
998 struct ps3_vuart_port_priv
*priv
= NULL
;
1000 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
1002 drv
= ps3_system_bus_dev_to_vuart_drv(dev
);
1005 dev_dbg(&dev
->core
, "%s:%d: (%s)\n", __func__
, __LINE__
,
1006 drv
->core
.core
.name
);
1008 if (dev
->port_number
>= PORT_COUNT
) {
1013 mutex_lock(&vuart_bus_priv
.probe_mutex
);
1015 result
= ps3_vuart_bus_interrupt_get();
1018 goto fail_setup_interrupt
;
1020 if (vuart_bus_priv
.devices
[dev
->port_number
]) {
1021 dev_dbg(&dev
->core
, "%s:%d: port busy (%d)\n", __func__
,
1022 __LINE__
, dev
->port_number
);
1027 vuart_bus_priv
.devices
[dev
->port_number
] = dev
;
1029 /* Setup dev->driver_priv. */
1031 dev
->driver_priv
= kzalloc(sizeof(struct ps3_vuart_port_priv
),
1034 if (!dev
->driver_priv
) {
1036 goto fail_dev_malloc
;
1039 priv
= to_port_priv(dev
);
1041 INIT_LIST_HEAD(&priv
->tx_list
.head
);
1042 spin_lock_init(&priv
->tx_list
.lock
);
1044 INIT_LIST_HEAD(&priv
->rx_list
.head
);
1045 spin_lock_init(&priv
->rx_list
.lock
);
1047 INIT_WORK(&priv
->rx_list
.work
.work
, ps3_vuart_work
);
1048 priv
->rx_list
.work
.trigger
= 0;
1049 priv
->rx_list
.work
.dev
= dev
;
1051 /* clear stale pending interrupts */
1053 ps3_vuart_clear_rx_bytes(dev
, 0);
1055 ps3_vuart_set_interrupt_mask(dev
, INTERRUPT_MASK_RX
);
1057 ps3_vuart_set_triggers(dev
, 1, 1);
1060 result
= drv
->probe(dev
);
1063 dev_info(&dev
->core
, "%s:%d: no probe method\n", __func__
,
1068 dev_dbg(&dev
->core
, "%s:%d: drv->probe failed\n",
1069 __func__
, __LINE__
);
1073 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1078 ps3_vuart_set_interrupt_mask(dev
, 0);
1079 kfree(dev
->driver_priv
);
1080 dev
->driver_priv
= NULL
;
1082 vuart_bus_priv
.devices
[dev
->port_number
] = NULL
;
1084 ps3_vuart_bus_interrupt_put();
1085 fail_setup_interrupt
:
1086 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1087 dev_dbg(&dev
->core
, "%s:%d: failed\n", __func__
, __LINE__
);
1092 * ps3_vuart_cleanup - common cleanup helper.
1093 * @dev: The struct ps3_system_bus_device instance.
1095 * Cleans interrupts and HV resources. Must be called with
1096 * vuart_bus_priv.probe_mutex held. Used by ps3_vuart_remove and
1097 * ps3_vuart_shutdown. After this call, polled reading will still work.
1100 static int ps3_vuart_cleanup(struct ps3_system_bus_device
*dev
)
1102 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
1104 ps3_vuart_cancel_async(dev
);
1105 ps3_vuart_set_interrupt_mask(dev
, 0);
1106 ps3_vuart_bus_interrupt_put();
1111 * ps3_vuart_remove - Completely clean the device instance.
1112 * @dev: The struct ps3_system_bus_device instance.
1114 * Cleans all memory, interrupts and HV resources. After this call the
1115 * device can no longer be used.
1118 static int ps3_vuart_remove(struct ps3_system_bus_device
*dev
)
1120 struct ps3_vuart_port_priv
*priv
= to_port_priv(dev
);
1121 struct ps3_vuart_port_driver
*drv
;
1125 mutex_lock(&vuart_bus_priv
.probe_mutex
);
1127 dev_dbg(&dev
->core
, " -> %s:%d: match_id %d\n", __func__
, __LINE__
,
1130 if (!dev
->core
.driver
) {
1131 dev_dbg(&dev
->core
, "%s:%d: no driver bound\n", __func__
,
1133 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1137 drv
= ps3_system_bus_dev_to_vuart_drv(dev
);
1144 dev_dbg(&dev
->core
, "%s:%d: no remove method\n", __func__
,
1149 ps3_vuart_cleanup(dev
);
1151 vuart_bus_priv
.devices
[dev
->port_number
] = NULL
;
1155 dev_dbg(&dev
->core
, " <- %s:%d\n", __func__
, __LINE__
);
1156 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1161 * ps3_vuart_shutdown - Cleans interrupts and HV resources.
1162 * @dev: The struct ps3_system_bus_device instance.
1164 * Cleans interrupts and HV resources. After this call the
1165 * device can still be used in polling mode. This behavior required
1166 * by sys-manager to be able to complete the device power operation
1170 static int ps3_vuart_shutdown(struct ps3_system_bus_device
*dev
)
1172 struct ps3_vuart_port_driver
*drv
;
1176 mutex_lock(&vuart_bus_priv
.probe_mutex
);
1178 dev_dbg(&dev
->core
, " -> %s:%d: match_id %d\n", __func__
, __LINE__
,
1181 if (!dev
->core
.driver
) {
1182 dev_dbg(&dev
->core
, "%s:%d: no driver bound\n", __func__
,
1184 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1188 drv
= ps3_system_bus_dev_to_vuart_drv(dev
);
1194 else if (drv
->remove
) {
1195 dev_dbg(&dev
->core
, "%s:%d: no shutdown, calling remove\n",
1196 __func__
, __LINE__
);
1199 dev_dbg(&dev
->core
, "%s:%d: no shutdown method\n", __func__
,
1204 ps3_vuart_cleanup(dev
);
1206 dev_dbg(&dev
->core
, " <- %s:%d\n", __func__
, __LINE__
);
1208 mutex_unlock(&vuart_bus_priv
.probe_mutex
);
1212 static int __init
ps3_vuart_bus_init(void)
1214 pr_debug("%s:%d:\n", __func__
, __LINE__
);
1216 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
1219 mutex_init(&vuart_bus_priv
.probe_mutex
);
1224 static void __exit
ps3_vuart_bus_exit(void)
1226 pr_debug("%s:%d:\n", __func__
, __LINE__
);
1229 core_initcall(ps3_vuart_bus_init
);
1230 module_exit(ps3_vuart_bus_exit
);
1233 * ps3_vuart_port_driver_register - Add a vuart port device driver.
1236 int ps3_vuart_port_driver_register(struct ps3_vuart_port_driver
*drv
)
1240 pr_debug("%s:%d: (%s)\n", __func__
, __LINE__
, drv
->core
.core
.name
);
1242 BUG_ON(!drv
->core
.match_id
);
1243 BUG_ON(!drv
->core
.core
.name
);
1245 drv
->core
.probe
= ps3_vuart_probe
;
1246 drv
->core
.remove
= ps3_vuart_remove
;
1247 drv
->core
.shutdown
= ps3_vuart_shutdown
;
1249 result
= ps3_system_bus_driver_register(&drv
->core
);
1252 EXPORT_SYMBOL_GPL(ps3_vuart_port_driver_register
);
1255 * ps3_vuart_port_driver_unregister - Remove a vuart port device driver.
1258 void ps3_vuart_port_driver_unregister(struct ps3_vuart_port_driver
*drv
)
1260 pr_debug("%s:%d: (%s)\n", __func__
, __LINE__
, drv
->core
.core
.name
);
1261 ps3_system_bus_driver_unregister(&drv
->core
);
1263 EXPORT_SYMBOL_GPL(ps3_vuart_port_driver_unregister
);