* Set the power status of device. This feature is only supported on * Kirkwood and Discovery SoCs. */
| 654 | * Kirkwood and Discovery SoCs. |
| 655 | */ |
| 656 | void |
| 657 | soc_power_ctrl_set(uint32_t mask) |
| 658 | { |
| 659 | |
| 660 | #if !defined(SOC_MV_ORION) |
| 661 | if (mask != CPU_PM_CTRL_NONE) |
| 662 | write_cpu_ctrl(CPU_PM_CTRL, mask); |
| 663 | #endif |
| 664 | } |
| 665 | |
| 666 | void |
| 667 | soc_id(uint32_t *dev, uint32_t *rev) |
no test coverage detected