4 * Copyright (C) 2007 Sony Computer Entertainment Inc.
5 * Copyright 2007 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/module.h>
23 #include <linux/workqueue.h>
24 #include <linux/reboot.h>
26 #include <asm/firmware.h>
32 * ps3_sys_manager - PS3 system manager driver.
34 * The system manager provides an asynchronous system event notification
35 * mechanism for reporting events like thermal alert and button presses to
36 * guests. It also provides support to control system shutdown and startup.
38 * The actual system manager is implemented as an application running in the
39 * system policy module in lpar_1. Guests communicate with the system manager
40 * through port 2 of the vuart using a simple packet message protocol.
41 * Messages are comprised of a fixed field header followed by a message
46 * struct ps3_sys_manager_header - System manager message header.
47 * @version: Header version, currently 1.
48 * @size: Header size in bytes, curently 16.
49 * @payload_size: Message payload size in bytes.
50 * @service_id: Message type, one of enum ps3_sys_manager_service_id.
51 * @request_tag: Unique number to identify reply.
54 struct ps3_sys_manager_header
{
65 #define dump_sm_header(_h) _dump_sm_header(_h, __func__, __LINE__)
66 static void __maybe_unused
_dump_sm_header(
67 const struct ps3_sys_manager_header
*h
, const char *func
, int line
)
69 pr_debug("%s:%d: version: %xh\n", func
, line
, h
->version
);
70 pr_debug("%s:%d: size: %xh\n", func
, line
, h
->size
);
71 pr_debug("%s:%d: payload_size: %xh\n", func
, line
, h
->payload_size
);
72 pr_debug("%s:%d: service_id: %xh\n", func
, line
, h
->service_id
);
73 pr_debug("%s:%d: request_tag: %xh\n", func
, line
, h
->request_tag
);
77 * @PS3_SM_RX_MSG_LEN_MIN - Shortest received message length.
78 * @PS3_SM_RX_MSG_LEN_MAX - Longest received message length.
80 * Currently all messages received from the system manager are either
81 * (16 bytes header + 8 bytes payload = 24 bytes) or (16 bytes header
82 * + 16 bytes payload = 32 bytes). This knowlege is used to simplify
87 PS3_SM_RX_MSG_LEN_MIN
= 24,
88 PS3_SM_RX_MSG_LEN_MAX
= 32,
92 * enum ps3_sys_manager_service_id - Message header service_id.
93 * @PS3_SM_SERVICE_ID_REQUEST: guest --> sys_manager.
94 * @PS3_SM_SERVICE_ID_REQUEST_ERROR: guest <-- sys_manager.
95 * @PS3_SM_SERVICE_ID_COMMAND: guest <-- sys_manager.
96 * @PS3_SM_SERVICE_ID_RESPONSE: guest --> sys_manager.
97 * @PS3_SM_SERVICE_ID_SET_ATTR: guest --> sys_manager.
98 * @PS3_SM_SERVICE_ID_EXTERN_EVENT: guest <-- sys_manager.
99 * @PS3_SM_SERVICE_ID_SET_NEXT_OP: guest --> sys_manager.
101 * PS3_SM_SERVICE_ID_REQUEST_ERROR is returned for invalid data values in a
102 * a PS3_SM_SERVICE_ID_REQUEST message. It also seems to be returned when
103 * a REQUEST message is sent at the wrong time.
106 enum ps3_sys_manager_service_id
{
108 PS3_SM_SERVICE_ID_REQUEST
= 1,
109 PS3_SM_SERVICE_ID_RESPONSE
= 2,
110 PS3_SM_SERVICE_ID_COMMAND
= 3,
111 PS3_SM_SERVICE_ID_EXTERN_EVENT
= 4,
112 PS3_SM_SERVICE_ID_SET_NEXT_OP
= 5,
113 PS3_SM_SERVICE_ID_REQUEST_ERROR
= 6,
114 PS3_SM_SERVICE_ID_SET_ATTR
= 8,
118 * enum ps3_sys_manager_attr - Notification attribute (bit position mask).
119 * @PS3_SM_ATTR_POWER: Power button.
120 * @PS3_SM_ATTR_RESET: Reset button, not available on retail console.
121 * @PS3_SM_ATTR_THERMAL: Sytem thermal alert.
122 * @PS3_SM_ATTR_CONTROLLER: Remote controller event.
123 * @PS3_SM_ATTR_ALL: Logical OR of all.
125 * The guest tells the system manager which events it is interested in receiving
126 * notice of by sending the system manager a logical OR of notification
127 * attributes via the ps3_sys_manager_send_attr() routine.
130 enum ps3_sys_manager_attr
{
132 PS3_SM_ATTR_POWER
= 1,
133 PS3_SM_ATTR_RESET
= 2,
134 PS3_SM_ATTR_THERMAL
= 4,
135 PS3_SM_ATTR_CONTROLLER
= 8, /* bogus? */
136 PS3_SM_ATTR_ALL
= 0x0f,
140 * enum ps3_sys_manager_event - External event type, reported by system manager.
141 * @PS3_SM_EVENT_POWER_PRESSED: payload.value =
142 * enum ps3_sys_manager_button_event.
143 * @PS3_SM_EVENT_POWER_RELEASED: payload.value = time pressed in millisec.
144 * @PS3_SM_EVENT_RESET_PRESSED: payload.value =
145 * enum ps3_sys_manager_button_event.
146 * @PS3_SM_EVENT_RESET_RELEASED: payload.value = time pressed in millisec.
147 * @PS3_SM_EVENT_THERMAL_ALERT: payload.value = thermal zone id.
148 * @PS3_SM_EVENT_THERMAL_CLEARED: payload.value = thermal zone id.
151 enum ps3_sys_manager_event
{
153 PS3_SM_EVENT_POWER_PRESSED
= 3,
154 PS3_SM_EVENT_POWER_RELEASED
= 4,
155 PS3_SM_EVENT_RESET_PRESSED
= 5,
156 PS3_SM_EVENT_RESET_RELEASED
= 6,
157 PS3_SM_EVENT_THERMAL_ALERT
= 7,
158 PS3_SM_EVENT_THERMAL_CLEARED
= 8,
159 /* no info on controller events */
163 * enum ps3_sys_manager_button_event - Button event payload values.
164 * @PS3_SM_BUTTON_EVENT_HARD: Hardware generated event.
165 * @PS3_SM_BUTTON_EVENT_SOFT: Software generated event.
168 enum ps3_sys_manager_button_event
{
169 PS3_SM_BUTTON_EVENT_HARD
= 0,
170 PS3_SM_BUTTON_EVENT_SOFT
= 1,
174 * enum ps3_sys_manager_next_op - Operation to perform after lpar is destroyed.
177 enum ps3_sys_manager_next_op
{
179 PS3_SM_NEXT_OP_SYS_SHUTDOWN
= 1,
180 PS3_SM_NEXT_OP_SYS_REBOOT
= 2,
181 PS3_SM_NEXT_OP_LPAR_REBOOT
= 0x82,
185 * enum ps3_sys_manager_wake_source - Next-op wakeup source (bit position mask).
186 * @PS3_SM_WAKE_DEFAULT: Disk insert, power button, eject button, IR
187 * controller, and bluetooth controller.
189 * @PS3_SM_WAKE_RTC_ERROR:
190 * @PS3_SM_WAKE_P_O_R: Power on reset.
192 * Additional wakeup sources when specifying PS3_SM_NEXT_OP_SYS_SHUTDOWN.
193 * The system will always wake from the PS3_SM_WAKE_DEFAULT sources.
194 * Sources listed here are the only ones available to guests in the
198 enum ps3_sys_manager_wake_source
{
200 PS3_SM_WAKE_DEFAULT
= 0,
201 PS3_SM_WAKE_RTC
= 0x00000040,
202 PS3_SM_WAKE_RTC_ERROR
= 0x00000080,
203 PS3_SM_WAKE_P_O_R
= 0x80000000,
207 * enum ps3_sys_manager_cmd - Command from system manager to guest.
209 * The guest completes the actions needed, then acks or naks the command via
210 * ps3_sys_manager_send_response(). In the case of @PS3_SM_CMD_SHUTDOWN,
211 * the guest must be fully prepared for a system poweroff prior to acking the
215 enum ps3_sys_manager_cmd
{
217 PS3_SM_CMD_SHUTDOWN
= 1, /* shutdown guest OS */
221 * ps3_sm_force_power_off - Poweroff helper.
223 * A global variable used to force a poweroff when the power button has
224 * been pressed irrespective of how init handles the ctrl_alt_del signal.
228 static unsigned int ps3_sm_force_power_off
;
231 * ps3_sys_manager_write - Helper to write a two part message to the vuart.
235 static int ps3_sys_manager_write(struct ps3_system_bus_device
*dev
,
236 const struct ps3_sys_manager_header
*header
, const void *payload
)
240 BUG_ON(header
->version
!= 1);
241 BUG_ON(header
->size
!= 16);
242 BUG_ON(header
->payload_size
!= 8 && header
->payload_size
!= 16);
243 BUG_ON(header
->service_id
> 8);
245 result
= ps3_vuart_write(dev
, header
,
246 sizeof(struct ps3_sys_manager_header
));
249 result
= ps3_vuart_write(dev
, payload
, header
->payload_size
);
255 * ps3_sys_manager_send_attr - Send a 'set attribute' to the system manager.
259 static int ps3_sys_manager_send_attr(struct ps3_system_bus_device
*dev
,
260 enum ps3_sys_manager_attr attr
)
262 struct ps3_sys_manager_header header
;
269 BUILD_BUG_ON(sizeof(payload
) != 8);
271 dev_dbg(&dev
->core
, "%s:%d: %xh\n", __func__
, __LINE__
, attr
);
273 memset(&header
, 0, sizeof(header
));
276 header
.payload_size
= 16;
277 header
.service_id
= PS3_SM_SERVICE_ID_SET_ATTR
;
279 memset(&payload
, 0, sizeof(payload
));
281 payload
.attribute
= attr
;
283 return ps3_sys_manager_write(dev
, &header
, &payload
);
287 * ps3_sys_manager_send_next_op - Send a 'set next op' to the system manager.
289 * Tell the system manager what to do after this lpar is destroyed.
292 static int ps3_sys_manager_send_next_op(struct ps3_system_bus_device
*dev
,
293 enum ps3_sys_manager_next_op op
,
294 enum ps3_sys_manager_wake_source wake_source
)
296 struct ps3_sys_manager_header header
;
306 BUILD_BUG_ON(sizeof(payload
) != 16);
308 dev_dbg(&dev
->core
, "%s:%d: (%xh)\n", __func__
, __LINE__
, op
);
310 memset(&header
, 0, sizeof(header
));
313 header
.payload_size
= 16;
314 header
.service_id
= PS3_SM_SERVICE_ID_SET_NEXT_OP
;
316 memset(&payload
, 0, sizeof(payload
));
319 payload
.gos_id
= 3; /* other os */
320 payload
.wake_source
= wake_source
;
322 return ps3_sys_manager_write(dev
, &header
, &payload
);
326 * ps3_sys_manager_send_request_shutdown - Send 'request' to the system manager.
328 * The guest sends this message to request an operation or action of the system
329 * manager. The reply is a command message from the system manager. In the
330 * command handler the guest performs the requested operation. The result of
331 * the command is then communicated back to the system manager with a response
334 * Currently, the only supported request is the 'shutdown self' request.
337 static int ps3_sys_manager_send_request_shutdown(
338 struct ps3_system_bus_device
*dev
)
340 struct ps3_sys_manager_header header
;
348 BUILD_BUG_ON(sizeof(payload
) != 16);
350 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
352 memset(&header
, 0, sizeof(header
));
355 header
.payload_size
= 16;
356 header
.service_id
= PS3_SM_SERVICE_ID_REQUEST
;
358 memset(&payload
, 0, sizeof(payload
));
360 payload
.type
= 1; /* shutdown */
361 payload
.gos_id
= 0; /* self */
363 return ps3_sys_manager_write(dev
, &header
, &payload
);
367 * ps3_sys_manager_send_response - Send a 'response' to the system manager.
368 * @status: zero = success, others fail.
370 * The guest sends this message to the system manager to acnowledge success or
371 * failure of a command sent by the system manager.
374 static int ps3_sys_manager_send_response(struct ps3_system_bus_device
*dev
,
377 struct ps3_sys_manager_header header
;
385 BUILD_BUG_ON(sizeof(payload
) != 16);
387 dev_dbg(&dev
->core
, "%s:%d: (%s)\n", __func__
, __LINE__
,
388 (status
? "nak" : "ack"));
390 memset(&header
, 0, sizeof(header
));
393 header
.payload_size
= 16;
394 header
.service_id
= PS3_SM_SERVICE_ID_RESPONSE
;
396 memset(&payload
, 0, sizeof(payload
));
398 payload
.status
= status
;
400 return ps3_sys_manager_write(dev
, &header
, &payload
);
404 * ps3_sys_manager_handle_event - Second stage event msg handler.
408 static int ps3_sys_manager_handle_event(struct ps3_system_bus_device
*dev
)
419 BUILD_BUG_ON(sizeof(event
) != 16);
421 result
= ps3_vuart_read(dev
, &event
, sizeof(event
));
422 BUG_ON(result
&& "need to retry here");
424 if (event
.version
!= 1) {
425 dev_dbg(&dev
->core
, "%s:%d: unsupported event version (%u)\n",
426 __func__
, __LINE__
, event
.version
);
430 switch (event
.type
) {
431 case PS3_SM_EVENT_POWER_PRESSED
:
432 dev_dbg(&dev
->core
, "%s:%d: POWER_PRESSED (%s)\n",
434 (event
.value
== PS3_SM_BUTTON_EVENT_SOFT
? "soft"
436 ps3_sm_force_power_off
= 1;
438 * A memory barrier is use here to sync memory since
439 * ps3_sys_manager_final_restart() could be called on
443 kill_cad_pid(SIGINT
, 1); /* ctrl_alt_del */
445 case PS3_SM_EVENT_POWER_RELEASED
:
446 dev_dbg(&dev
->core
, "%s:%d: POWER_RELEASED (%u ms)\n",
447 __func__
, __LINE__
, event
.value
);
449 case PS3_SM_EVENT_RESET_PRESSED
:
450 dev_dbg(&dev
->core
, "%s:%d: RESET_PRESSED (%s)\n",
452 (event
.value
== PS3_SM_BUTTON_EVENT_SOFT
? "soft"
454 ps3_sm_force_power_off
= 0;
456 * A memory barrier is use here to sync memory since
457 * ps3_sys_manager_final_restart() could be called on
461 kill_cad_pid(SIGINT
, 1); /* ctrl_alt_del */
463 case PS3_SM_EVENT_RESET_RELEASED
:
464 dev_dbg(&dev
->core
, "%s:%d: RESET_RELEASED (%u ms)\n",
465 __func__
, __LINE__
, event
.value
);
467 case PS3_SM_EVENT_THERMAL_ALERT
:
468 dev_dbg(&dev
->core
, "%s:%d: THERMAL_ALERT (zone %u)\n",
469 __func__
, __LINE__
, event
.value
);
470 pr_info("PS3 Thermal Alert Zone %u\n", event
.value
);
472 case PS3_SM_EVENT_THERMAL_CLEARED
:
473 dev_dbg(&dev
->core
, "%s:%d: THERMAL_CLEARED (zone %u)\n",
474 __func__
, __LINE__
, event
.value
);
477 dev_dbg(&dev
->core
, "%s:%d: unknown event (%u)\n",
478 __func__
, __LINE__
, event
.type
);
485 * ps3_sys_manager_handle_cmd - Second stage command msg handler.
487 * The system manager sends this in reply to a 'request' message from the guest.
490 static int ps3_sys_manager_handle_cmd(struct ps3_system_bus_device
*dev
)
499 BUILD_BUG_ON(sizeof(cmd
) != 16);
501 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
503 result
= ps3_vuart_read(dev
, &cmd
, sizeof(cmd
));
504 BUG_ON(result
&& "need to retry here");
509 if (cmd
.version
!= 1) {
510 dev_dbg(&dev
->core
, "%s:%d: unsupported cmd version (%u)\n",
511 __func__
, __LINE__
, cmd
.version
);
515 if (cmd
.type
!= PS3_SM_CMD_SHUTDOWN
) {
516 dev_dbg(&dev
->core
, "%s:%d: unknown cmd (%u)\n",
517 __func__
, __LINE__
, cmd
.type
);
521 ps3_sys_manager_send_response(dev
, 0);
526 * ps3_sys_manager_handle_msg - First stage msg handler.
528 * Can be called directly to manually poll vuart and pump message handler.
531 static int ps3_sys_manager_handle_msg(struct ps3_system_bus_device
*dev
)
534 struct ps3_sys_manager_header header
;
536 result
= ps3_vuart_read(dev
, &header
,
537 sizeof(struct ps3_sys_manager_header
));
542 if (header
.version
!= 1) {
543 dev_dbg(&dev
->core
, "%s:%d: unsupported header version (%u)\n",
544 __func__
, __LINE__
, header
.version
);
545 dump_sm_header(&header
);
549 BUILD_BUG_ON(sizeof(header
) != 16);
551 if (header
.size
!= 16 || (header
.payload_size
!= 8
552 && header
.payload_size
!= 16)) {
553 dump_sm_header(&header
);
557 switch (header
.service_id
) {
558 case PS3_SM_SERVICE_ID_EXTERN_EVENT
:
559 dev_dbg(&dev
->core
, "%s:%d: EVENT\n", __func__
, __LINE__
);
560 return ps3_sys_manager_handle_event(dev
);
561 case PS3_SM_SERVICE_ID_COMMAND
:
562 dev_dbg(&dev
->core
, "%s:%d: COMMAND\n", __func__
, __LINE__
);
563 return ps3_sys_manager_handle_cmd(dev
);
564 case PS3_SM_SERVICE_ID_REQUEST_ERROR
:
565 dev_dbg(&dev
->core
, "%s:%d: REQUEST_ERROR\n", __func__
,
567 dump_sm_header(&header
);
570 dev_dbg(&dev
->core
, "%s:%d: unknown service_id (%u)\n",
571 __func__
, __LINE__
, header
.service_id
);
577 ps3_vuart_clear_rx_bytes(dev
, 0);
580 ps3_vuart_clear_rx_bytes(dev
, header
.payload_size
);
585 * ps3_sys_manager_final_power_off - The final platform machine_power_off routine.
587 * This routine never returns. The routine disables asynchronous vuart reads
588 * then spins calling ps3_sys_manager_handle_msg() to receive and acknowledge
589 * the shutdown command sent from the system manager. Soon after the
590 * acknowledgement is sent the lpar is destroyed by the HV. This routine
591 * should only be called from ps3_power_off() through
592 * ps3_sys_manager_ops.power_off.
595 static void ps3_sys_manager_final_power_off(struct ps3_system_bus_device
*dev
)
599 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
601 ps3_vuart_cancel_async(dev
);
603 ps3_sys_manager_send_next_op(dev
, PS3_SM_NEXT_OP_SYS_SHUTDOWN
,
604 PS3_SM_WAKE_DEFAULT
);
605 ps3_sys_manager_send_request_shutdown(dev
);
607 pr_emerg("System Halted, OK to turn off power\n");
610 ps3_sys_manager_handle_msg(dev
);
614 * ps3_sys_manager_final_restart - The final platform machine_restart routine.
616 * This routine never returns. The routine disables asynchronous vuart reads
617 * then spins calling ps3_sys_manager_handle_msg() to receive and acknowledge
618 * the shutdown command sent from the system manager. Soon after the
619 * acknowledgement is sent the lpar is destroyed by the HV. This routine
620 * should only be called from ps3_restart() through ps3_sys_manager_ops.restart.
623 static void ps3_sys_manager_final_restart(struct ps3_system_bus_device
*dev
)
627 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
629 /* Check if we got here via a power button event. */
631 if (ps3_sm_force_power_off
) {
632 dev_dbg(&dev
->core
, "%s:%d: forcing poweroff\n",
634 ps3_sys_manager_final_power_off(dev
);
637 ps3_vuart_cancel_async(dev
);
639 ps3_sys_manager_send_attr(dev
, 0);
640 ps3_sys_manager_send_next_op(dev
, PS3_SM_NEXT_OP_SYS_REBOOT
,
641 PS3_SM_WAKE_DEFAULT
);
642 ps3_sys_manager_send_request_shutdown(dev
);
644 pr_emerg("System Halted, OK to turn off power\n");
647 ps3_sys_manager_handle_msg(dev
);
651 * ps3_sys_manager_work - Asynchronous read handler.
653 * Signaled when PS3_SM_RX_MSG_LEN_MIN bytes arrive at the vuart port.
656 static void ps3_sys_manager_work(struct ps3_system_bus_device
*dev
)
658 ps3_sys_manager_handle_msg(dev
);
659 ps3_vuart_read_async(dev
, PS3_SM_RX_MSG_LEN_MIN
);
662 static int ps3_sys_manager_probe(struct ps3_system_bus_device
*dev
)
665 struct ps3_sys_manager_ops ops
;
667 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
669 ops
.power_off
= ps3_sys_manager_final_power_off
;
670 ops
.restart
= ps3_sys_manager_final_restart
;
673 /* ps3_sys_manager_register_ops copies ops. */
675 ps3_sys_manager_register_ops(&ops
);
677 result
= ps3_sys_manager_send_attr(dev
, PS3_SM_ATTR_ALL
);
680 result
= ps3_vuart_read_async(dev
, PS3_SM_RX_MSG_LEN_MIN
);
686 static int ps3_sys_manager_remove(struct ps3_system_bus_device
*dev
)
688 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
692 static void ps3_sys_manager_shutdown(struct ps3_system_bus_device
*dev
)
694 dev_dbg(&dev
->core
, "%s:%d\n", __func__
, __LINE__
);
697 static struct ps3_vuart_port_driver ps3_sys_manager
= {
698 .core
.match_id
= PS3_MATCH_ID_SYSTEM_MANAGER
,
699 .core
.core
.name
= "ps3_sys_manager",
700 .probe
= ps3_sys_manager_probe
,
701 .remove
= ps3_sys_manager_remove
,
702 .shutdown
= ps3_sys_manager_shutdown
,
703 .work
= ps3_sys_manager_work
,
706 static int __init
ps3_sys_manager_init(void)
708 if (!firmware_has_feature(FW_FEATURE_PS3_LV1
))
711 return ps3_vuart_port_driver_register(&ps3_sys_manager
);
714 module_init(ps3_sys_manager_init
);
715 /* Module remove not supported. */
717 MODULE_AUTHOR("Sony Corporation");
718 MODULE_LICENSE("GPL v2");
719 MODULE_DESCRIPTION("PS3 System Manager");
720 MODULE_ALIAS(PS3_MODULE_ALIAS_SYSTEM_MANAGER
);