From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lokesh Vutla Date: Wed, 22 Jul 2015 21:15:11 +0530 Subject: [U-Boot] [PATCH 0/8] ARM: keystone2: Clocls and PLLs cleanup In-Reply-To: <1437579558-26579-1-git-send-email-lokeshvutla@ti.com> References: <1437579558-26579-1-git-send-email-lokeshvutla@ti.com> Message-ID: <55AFBA87.7020802@ti.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi, On Wednesday 22 July 2015 09:09 PM, Lokesh Vutla wrote: > This seires does a several bunch of cleanups for clock and PLL > related definitions. This helps a lot in adding data for > new Keystone2 SoCs. And also adds support for CPU detection. Sorry about the typo in $subject. Will update it after the comments on this series. Thanks and regards, Lokesh > > This is based on Nishanth's config cleanup series: > https://www.mail-archive.com/u-boot%40lists.denx.de/msg177822.html > > Tested on K2HK-evm: http://pastebin.ubuntu.com/11920541/ > > Lokesh Vutla (8): > ARM: keystone2: Cleanup SoC detection > ARM: keystone2: Enable CONFIG_DISPLAY_CPUINFO > ARM: keystone2: Cleanup PLL init code > ARM: keystone2: Fix dev and arm speed detection > ARM: keystone2: Use common address for PLL > ARM: keystone2: Cleanup pll calling > ARM: keystone2: Remove unsed externalk clocks > ARM: keystone2: Use common definition for clk_get_rate > > arch/arm/mach-keystone/Makefile | 3 - > arch/arm/mach-keystone/clock-k2e.c | 117 ----- > arch/arm/mach-keystone/clock-k2hk.c | 145 ------ > arch/arm/mach-keystone/clock-k2l.c | 138 ------ > arch/arm/mach-keystone/clock.c | 527 +++++++++++++-------- > arch/arm/mach-keystone/cmd_clock.c | 7 +- > arch/arm/mach-keystone/include/mach/clock-k2e.h | 58 +-- > arch/arm/mach-keystone/include/mach/clock-k2hk.h | 64 +-- > arch/arm/mach-keystone/include/mach/clock-k2l.h | 59 +-- > arch/arm/mach-keystone/include/mach/clock.h | 60 ++- > arch/arm/mach-keystone/include/mach/clock_defs.h | 107 +++-- > .../arm/mach-keystone/include/mach/hardware-k2hk.h | 4 - > arch/arm/mach-keystone/include/mach/hardware.h | 51 +- > arch/arm/mach-keystone/init.c | 24 + > board/ti/ks2_evm/board.c | 1 - > board/ti/ks2_evm/board_k2e.c | 41 +- > board/ti/ks2_evm/board_k2hk.c | 47 +- > board/ti/ks2_evm/board_k2l.c | 46 +- > include/configs/ti_armv7_keystone2.h | 1 + > 19 files changed, 603 insertions(+), 897 deletions(-) > delete mode 100644 arch/arm/mach-keystone/clock-k2e.c > delete mode 100644 arch/arm/mach-keystone/clock-k2hk.c > delete mode 100644 arch/arm/mach-keystone/clock-k2l.c >