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>
19 #include <asm/mach/map.h>
22 #include <plat/pm-common.h>
24 #ifdef CONFIG_SAMSUNG_ATAGS
25 #include <mach/pm-core.h>
27 static inline void s3c_pm_debug_init_uart(void) {}
28 static inline void s3c_pm_arch_update_uart(void __iomem
*regs
,
29 struct pm_uart_save
*save
) {}
32 static struct pm_uart_save uart_save
;
34 extern void printascii(const char *);
36 void s3c_pm_dbg(const char *fmt
, ...)
42 vsnprintf(buff
, sizeof(buff
), fmt
, va
);
48 void s3c_pm_debug_init(void)
50 /* restart uart clocks so we can use them to output */
51 s3c_pm_debug_init_uart();
54 static inline void __iomem
*s3c_pm_uart_base(void)
59 debug_ll_addr(&paddr
, &vaddr
);
61 return (void __iomem
*)vaddr
;
64 void s3c_pm_save_uarts(void)
66 void __iomem
*regs
= s3c_pm_uart_base();
67 struct pm_uart_save
*save
= &uart_save
;
69 save
->ulcon
= __raw_readl(regs
+ S3C2410_ULCON
);
70 save
->ucon
= __raw_readl(regs
+ S3C2410_UCON
);
71 save
->ufcon
= __raw_readl(regs
+ S3C2410_UFCON
);
72 save
->umcon
= __raw_readl(regs
+ S3C2410_UMCON
);
73 save
->ubrdiv
= __raw_readl(regs
+ S3C2410_UBRDIV
);
75 if (!soc_is_s3c2410())
76 save
->udivslot
= __raw_readl(regs
+ S3C2443_DIVSLOT
);
78 S3C_PMDBG("UART[%p]: ULCON=%04x, UCON=%04x, UFCON=%04x, UBRDIV=%04x\n",
79 regs
, save
->ulcon
, save
->ucon
, save
->ufcon
, save
->ubrdiv
);
82 void s3c_pm_restore_uarts(void)
84 void __iomem
*regs
= s3c_pm_uart_base();
85 struct pm_uart_save
*save
= &uart_save
;
87 s3c_pm_arch_update_uart(regs
, save
);
89 __raw_writel(save
->ulcon
, regs
+ S3C2410_ULCON
);
90 __raw_writel(save
->ucon
, regs
+ S3C2410_UCON
);
91 __raw_writel(save
->ufcon
, regs
+ S3C2410_UFCON
);
92 __raw_writel(save
->umcon
, regs
+ S3C2410_UMCON
);
93 __raw_writel(save
->ubrdiv
, regs
+ S3C2410_UBRDIV
);
95 if (!soc_is_s3c2410())
96 __raw_writel(save
->udivslot
, regs
+ S3C2443_DIVSLOT
);