mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-20 19:23:57 +08:00
Power: Reset: Generalize qnap-poweroff to work on Synology devices.
The Synology NAS devices use a very similar mechanism to QNAP NAS devices to power off. Both send a single charactor command to a PIC, over the second serial port. However the baud rate and the command differ. Generalize the driver to support this. Signed-off-by: Ben Peddell <klightspeed@killerwolves.net> Signed-off-by: Andrew Lunn <andrew@lunn.ch> Acked-by: Jason Cooper <jason@lakedaemon.net> Cc: Anton Vorontsov <anton@enomsg.org> Cc: Dmitry Eremin-Solenikov <dbaryshkov@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Signed-off-by: Jason Cooper <jason@lakedaemon.net>
This commit is contained in:
parent
ff1f0018cf
commit
200c0a3e40
@ -6,8 +6,11 @@ Orion5x SoCs. Sending the character 'A', at 19200 baud, tells the
|
|||||||
microcontroller to turn the power off. This driver adds a handler to
|
microcontroller to turn the power off. This driver adds a handler to
|
||||||
pm_power_off which is called to turn the power off.
|
pm_power_off which is called to turn the power off.
|
||||||
|
|
||||||
|
Synology NAS devices use a similar scheme, but a different baud rate,
|
||||||
|
9600, and a different character, '1'.
|
||||||
|
|
||||||
Required Properties:
|
Required Properties:
|
||||||
- compatible: Should be "qnap,power-off"
|
- compatible: Should be "qnap,power-off" or "synology,power-off"
|
||||||
|
|
||||||
- reg: Address and length of the register set for UART1
|
- reg: Address and length of the register set for UART1
|
||||||
- clocks: tclk clock
|
- clocks: tclk clock
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* QNAP Turbo NAS Board power off
|
* QNAP Turbo NAS Board power off. Can also be used on Synology devices.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012 Andrew Lunn <andrew@lunn.ch>
|
* Copyright (C) 2012 Andrew Lunn <andrew@lunn.ch>
|
||||||
*
|
*
|
||||||
@ -25,17 +25,43 @@
|
|||||||
|
|
||||||
#define UART1_REG(x) (base + ((UART_##x) << 2))
|
#define UART1_REG(x) (base + ((UART_##x) << 2))
|
||||||
|
|
||||||
|
struct power_off_cfg {
|
||||||
|
u32 baud;
|
||||||
|
char cmd;
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct power_off_cfg qnap_power_off_cfg = {
|
||||||
|
.baud = 19200,
|
||||||
|
.cmd = 'A',
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct power_off_cfg synology_power_off_cfg = {
|
||||||
|
.baud = 9600,
|
||||||
|
.cmd = '1',
|
||||||
|
};
|
||||||
|
|
||||||
|
static const struct of_device_id qnap_power_off_of_match_table[] = {
|
||||||
|
{ .compatible = "qnap,power-off",
|
||||||
|
.data = &qnap_power_off_cfg,
|
||||||
|
},
|
||||||
|
{ .compatible = "synology,power-off",
|
||||||
|
.data = &synology_power_off_cfg,
|
||||||
|
},
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
MODULE_DEVICE_TABLE(of, qnap_power_off_of_match_table);
|
||||||
|
|
||||||
static void __iomem *base;
|
static void __iomem *base;
|
||||||
static unsigned long tclk;
|
static unsigned long tclk;
|
||||||
|
static const struct power_off_cfg *cfg;
|
||||||
|
|
||||||
static void qnap_power_off(void)
|
static void qnap_power_off(void)
|
||||||
{
|
{
|
||||||
/* 19200 baud divisor */
|
const unsigned divisor = ((tclk + (8 * cfg->baud)) / (16 * cfg->baud));
|
||||||
const unsigned divisor = ((tclk + (8 * 19200)) / (16 * 19200));
|
|
||||||
|
|
||||||
pr_err("%s: triggering power-off...\n", __func__);
|
pr_err("%s: triggering power-off...\n", __func__);
|
||||||
|
|
||||||
/* hijack UART1 and reset into sane state (19200,8n1) */
|
/* hijack UART1 and reset into sane state */
|
||||||
writel(0x83, UART1_REG(LCR));
|
writel(0x83, UART1_REG(LCR));
|
||||||
writel(divisor & 0xff, UART1_REG(DLL));
|
writel(divisor & 0xff, UART1_REG(DLL));
|
||||||
writel((divisor >> 8) & 0xff, UART1_REG(DLM));
|
writel((divisor >> 8) & 0xff, UART1_REG(DLM));
|
||||||
@ -44,16 +70,21 @@ static void qnap_power_off(void)
|
|||||||
writel(0x00, UART1_REG(FCR));
|
writel(0x00, UART1_REG(FCR));
|
||||||
writel(0x00, UART1_REG(MCR));
|
writel(0x00, UART1_REG(MCR));
|
||||||
|
|
||||||
/* send the power-off command 'A' to PIC */
|
/* send the power-off command to PIC */
|
||||||
writel('A', UART1_REG(TX));
|
writel(cfg->cmd, UART1_REG(TX));
|
||||||
}
|
}
|
||||||
|
|
||||||
static int qnap_power_off_probe(struct platform_device *pdev)
|
static int qnap_power_off_probe(struct platform_device *pdev)
|
||||||
{
|
{
|
||||||
|
struct device_node *np = pdev->dev.of_node;
|
||||||
struct resource *res;
|
struct resource *res;
|
||||||
struct clk *clk;
|
struct clk *clk;
|
||||||
char symname[KSYM_NAME_LEN];
|
char symname[KSYM_NAME_LEN];
|
||||||
|
|
||||||
|
const struct of_device_id *match =
|
||||||
|
of_match_node(qnap_power_off_of_match_table, np);
|
||||||
|
cfg = match->data;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
if (!res) {
|
if (!res) {
|
||||||
dev_err(&pdev->dev, "Missing resource");
|
dev_err(&pdev->dev, "Missing resource");
|
||||||
@ -94,12 +125,6 @@ static int qnap_power_off_remove(struct platform_device *pdev)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const struct of_device_id qnap_power_off_of_match_table[] = {
|
|
||||||
{ .compatible = "qnap,power-off", },
|
|
||||||
{}
|
|
||||||
};
|
|
||||||
MODULE_DEVICE_TABLE(of, qnap_power_off_of_match_table);
|
|
||||||
|
|
||||||
static struct platform_driver qnap_power_off_driver = {
|
static struct platform_driver qnap_power_off_driver = {
|
||||||
.probe = qnap_power_off_probe,
|
.probe = qnap_power_off_probe,
|
||||||
.remove = qnap_power_off_remove,
|
.remove = qnap_power_off_remove,
|
||||||
|
Loading…
Reference in New Issue
Block a user