2 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
3 * Tomasz Figa <t.figa@samsung.com>
4 * Copyright (C) 2008 Openmoko, Inc.
5 * Copyright (C) 2004-2008 Simtec Electronics
6 * Ben Dooks <ben@simtec.co.uk>
7 * http://armlinux.simtec.co.uk/
9 * Samsung common power management (suspend to RAM) debug support
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
16 #include <linux/serial_core.h>
17 #include <linux/serial_s3c.h>
20 #include <asm/mach/map.h>
23 #include <plat/pm-common.h>
25 #ifdef CONFIG_SAMSUNG_ATAGS
27 #include <mach/pm-core.h>
29 static inline void s3c_pm_debug_init_uart(void) {}
30 static inline void s3c_pm_arch_update_uart(void __iomem
*regs
,
31 struct pm_uart_save
*save
) {}
34 static struct pm_uart_save uart_save
;
36 extern void printascii(const char *);
38 void s3c_pm_dbg(const char *fmt
, ...)
44 vsnprintf(buff
, sizeof(buff
), fmt
, va
);
50 void s3c_pm_debug_init(void)
52 /* restart uart clocks so we can use them to output */
53 s3c_pm_debug_init_uart();
56 static inline void __iomem
*s3c_pm_uart_base(void)
61 debug_ll_addr(&paddr
, &vaddr
);
63 return (void __iomem
*)vaddr
;
66 void s3c_pm_save_uarts(void)
68 void __iomem
*regs
= s3c_pm_uart_base();
69 struct pm_uart_save
*save
= &uart_save
;
71 save
->ulcon
= __raw_readl(regs
+ S3C2410_ULCON
);
72 save
->ucon
= __raw_readl(regs
+ S3C2410_UCON
);
73 save
->ufcon
= __raw_readl(regs
+ S3C2410_UFCON
);
74 save
->umcon
= __raw_readl(regs
+ S3C2410_UMCON
);
75 save
->ubrdiv
= __raw_readl(regs
+ S3C2410_UBRDIV
);
77 if (!soc_is_s3c2410())
78 save
->udivslot
= __raw_readl(regs
+ S3C2443_DIVSLOT
);
80 S3C_PMDBG("UART[%p]: ULCON=%04x, UCON=%04x, UFCON=%04x, UBRDIV=%04x\n",
81 regs
, save
->ulcon
, save
->ucon
, save
->ufcon
, save
->ubrdiv
);
84 void s3c_pm_restore_uarts(void)
86 void __iomem
*regs
= s3c_pm_uart_base();
87 struct pm_uart_save
*save
= &uart_save
;
89 s3c_pm_arch_update_uart(regs
, save
);
91 __raw_writel(save
->ulcon
, regs
+ S3C2410_ULCON
);
92 __raw_writel(save
->ucon
, regs
+ S3C2410_UCON
);
93 __raw_writel(save
->ufcon
, regs
+ S3C2410_UFCON
);
94 __raw_writel(save
->umcon
, regs
+ S3C2410_UMCON
);
95 __raw_writel(save
->ubrdiv
, regs
+ S3C2410_UBRDIV
);
97 if (!soc_is_s3c2410())
98 __raw_writel(save
->udivslot
, regs
+ S3C2443_DIVSLOT
);