Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/arm/samsung Add KPLL for Exynos5 and EPLL is called...



details:   https://anonhg.NetBSD.org/src/rev/99f671a240b7
branches:  trunk
changeset: 332653:99f671a240b7
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Thu Oct 02 11:27:09 2014 +0000

description:
Add KPLL for Exynos5 and EPLL is called DPLL on the 5410 :-/

diffstat:

 sys/arch/arm/samsung/exynos_soc.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (28 lines):

diff -r db8e23e13168 -r 99f671a240b7 sys/arch/arm/samsung/exynos_soc.c
--- a/sys/arch/arm/samsung/exynos_soc.c Thu Oct 02 11:17:50 2014 +0000
+++ b/sys/arch/arm/samsung/exynos_soc.c Thu Oct 02 11:27:09 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exynos_soc.c,v 1.24 2014/10/02 11:17:50 reinoud Exp $  */
+/*     $NetBSD: exynos_soc.c,v 1.25 2014/10/02 11:27:09 reinoud Exp $  */
 
 /*-
  * Copyright (c) 2014 The NetBSD Foundation, Inc.
@@ -34,7 +34,7 @@
 #define        _ARM32_BUS_DMA_PRIVATE
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.24 2014/10/02 11:17:50 reinoud Exp $");
+__KERNEL_RCSID(1, "$NetBSD: exynos_soc.c,v 1.25 2014/10/02 11:27:09 reinoud Exp $");
 
 #include <sys/param.h>
 #include <sys/bus.h>
@@ -465,7 +465,8 @@
 #ifdef EXYNOS5
        DUMP_PLL(5, APLL);
        DUMP_PLL(5, MPLL);
-       DUMP_PLL(5, EPLL);
+       DUMP_PLL(5, KPLL);
+       DUMP_PLL(5, DPLL);
        DUMP_PLL(5, VPLL);
        DUMP_PLL(5, CPLL);
        DUMP_PLL(5, GPLL);



Home | Main Index | Thread Index | Old Index