From: pavel@denx.de (Pavel Machek)
To: linux-arm-kernel@lists.infradead.org
Subject: [RFC PATCHv1 1/2] ARM: socfpga: initial support for Altera's SOCFPGA platform.
Date: Sat, 30 Jun 2012 20:57:47 +0200 [thread overview]
Message-ID: <20120630185743.GA4536@elf.ucw.cz> (raw)
In-Reply-To: <20120627162014.1494cdd7@skate>
Hi!
> > +#include <linux/module.h>
> > +#include <linux/kernel.h>
> > +#include <linux/errno.h>
> > +#include <linux/clk.h>
> > +#include <linux/mutex.h>
> > +#include <mach/clkdev.h>
> > +
> > +int clk_enable(struct clk *clk)
> > +{
> > + return 0;
> > +}
> > +EXPORT_SYMBOL(clk_enable);
....
>
> I don't think the ARM maintainers want more implementations of the
> clock API. New SoCs should instead use the new clock framework in
> drivers/clk/. See Documentation/clk.txt for details. You can for
> example look at the mxs or spear implementations for examples.
Agreed. Looks like fixed-rates.
> > + {
> > + .dev_id = "dma-pl330",
> > + .clk = &l4_main_clk,
> > + }
> > +};
>
> These should use the clock framework.
Yep. Something like this? (Untested)
Pavel
diff --git a/arch/arm/mach-socfpga/Kconfig b/arch/arm/mach-socfpga/Kconfig
index 37863d1..81358e6 100644
--- a/arch/arm/mach-socfpga/Kconfig
+++ b/arch/arm/mach-socfpga/Kconfig
@@ -3,6 +3,7 @@ config MACH_SOCFPGA_CYCLONE5
bool "SOCFPGA Cyclone5 platform"
select HAVE_SMP
select PLAT_SOCFPGA_ETH
+ select COMMON_CLK
help
Include support for the Altera(R) Cyclone5 development platform.
diff --git a/arch/arm/mach-socfpga/Makefile b/arch/arm/mach-socfpga/Makefile
index 5502add..3e79bb0 100644
--- a/arch/arm/mach-socfpga/Makefile
+++ b/arch/arm/mach-socfpga/Makefile
@@ -2,7 +2,7 @@
# Makefile for the linux kernel.
#
-obj-y := common.o clock.o dw_apb_timer.o
+obj-y := common.o dw_apb_timer.o
obj-$(CONFIG_MACH_SOCFPGA_CYCLONE5) += socfpga_cyclone5.o
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
\ No newline at end of file
diff --git a/arch/arm/mach-socfpga/common.c b/arch/arm/mach-socfpga/common.c
index 331040e..eac2571 100644
--- a/arch/arm/mach-socfpga/common.c
+++ b/arch/arm/mach-socfpga/common.c
@@ -22,6 +22,7 @@
#include <linux/clkdev.h>
#include <linux/gfp.h>
#include <linux/of_platform.h>
+#include <linux/clk-provider.h>
#include <mach/iomap.h>
#include <mach/socfpga_cyclone5.h>
@@ -49,51 +50,6 @@ extern struct dma_pl330_platdata dma_platform_data;
#define SOCFPGA_MPU_PERIHCLK_FREQ_HZ (800000000 / 4)
#define SOCFPGA_L4_MAIN_CLK (400000000)
-static struct clk dummy_apb_pclk;
-static struct clk dummy_i2c_clk = {
- .rate = 100000000,
-};
-static struct clk dummy_spim_clk = {
- .rate = 100000000,
-};
-static struct clk mpu_periphclk = {
- .rate = SOCFPGA_MPU_PERIHCLK_FREQ_HZ,
-};
-
-static struct clk l4_main_clk = {
- .rate = SOCFPGA_L4_MAIN_CLK,
-};
-
-static struct clk_lookup lookups[] = {
- { /* Bus clock */
- .con_id = "apb_pclk",
- .clk = &dummy_apb_pclk,
- },
- {
- .dev_id = "ffc04000.i2c",
- .clk = &dummy_i2c_clk,
- },
- {
- .dev_id = "ffc05000.i2c",
- .clk = &dummy_i2c_clk,
- },
- {
- .dev_id = "dw-spi-mmio.0",
- .clk = &dummy_spim_clk,
- },
- {
- .dev_id = "dw-spi-mmio.1",
- .clk = &dummy_spim_clk,
- },
- {
- .dev_id = "smp_twd",
- .clk = &mpu_periphclk,
- },
- {
- .dev_id = "dma-pl330",
- .clk = &l4_main_clk,
- }
-};
struct plat_serial8250_port uart_platform_data[] = {
{
@@ -105,7 +61,36 @@ struct plat_serial8250_port uart_platform_data[] = {
void __init socfpga_init_early(void)
{
- clkdev_add_table(lookups, ARRAY_SIZE(lookups));
+ struct clk *dummy_apb_pclk;
+ struct clk *dummy_i2c_clk;
+ struct clk *dummy_spim_clk;
+ struct clk *mpu_periphclk;
+ struct clk *l4_main_clk;
+
+ dummy_apb_pclk = clk_register_fixed_rate(NULL, "apb", NULL, 0, 0);
+ dummy_i2c_clk = clk_register_fixed_rate(NULL, "i2c", NULL, 0, 100000000);
+ dummy_spim_clk = clk_register_fixed_rate(NULL, "spim", NULL, 0, 100000000);
+ mpu_periphclk = clk_register_fixed_rate(NULL, "mpu_perih", NULL, 0, SOCFPGA_MPU_PERIHCLK_FREQ_HZ);
+ l4_main_clk = clk_register_fixed_rate(NULL, "l4_main", NULL, 0, SOCFPGA_L4_MAIN_CLK);
+
+ {
+ static struct clk_lookup lookups[7];
+ lookups[0].con_id = "apb_pclk"; /* Bus clock */
+ lookups[0].clk = dummy_apb_pclk;
+ lookups[1].dev_id = "ffc04000.i2c";
+ lookups[1].clk = dummy_i2c_clk;
+ lookups[2].dev_id = "ffc05000.i2c";
+ lookups[2].clk = dummy_i2c_clk;
+ lookups[3].dev_id = "dw-spi-mmio.0";
+ lookups[3].clk = dummy_spim_clk;
+ lookups[4].dev_id = "dw-spi-mmio.1";
+ lookups[4].clk = dummy_spim_clk;
+ lookups[5].dev_id = "smp_twd";
+ lookups[5].clk = mpu_periphclk;
+ lookups[6].dev_id = "dma-pl330";
+ lookups[6].clk = l4_main_clk;
+ clkdev_add_table(lookups, ARRAY_SIZE(lookups));
+ }
}
/*
diff --git a/arch/arm/mach-socfpga/include/mach/clock.h b/arch/arm/mach-socfpga/include/mach/clock.h
index 5187064..de9d3b2 100644
--- a/arch/arm/mach-socfpga/include/mach/clock.h
+++ b/arch/arm/mach-socfpga/include/mach/clock.h
@@ -1,11 +1,4 @@
#ifndef __MACH_CLOCK_H
#define __MACH_CLOCK_H
-struct clk;
-
-struct clk_ops {
- long (*round)(struct clk *, unsigned long);
- int (*set)(struct clk *, unsigned long);
-};
-
#endif
--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
next prev parent reply other threads:[~2012-06-30 18:57 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-06-27 13:50 [RFC]Add initial support for Altera's SOCFPGA hardward dinguyen at altera.com
2012-06-27 13:50 ` [RFC PATCHv1 1/2] ARM: socfpga: initial support for Altera's SOCFPGA platform dinguyen at altera.com
2012-06-27 14:20 ` Thomas Petazzoni
2012-06-27 18:05 ` Pavel Machek
2012-06-27 18:40 ` Thomas Petazzoni
2012-06-29 19:54 ` Dinh Nguyen
2012-06-29 22:18 ` Thomas Petazzoni
2012-07-04 16:11 ` Thomas Petazzoni
2012-06-30 21:04 ` Arnd Bergmann
2012-07-01 18:41 ` Pavel Machek
2012-07-02 16:52 ` Arnd Bergmann
2012-07-02 21:53 ` Pavel Machek
2012-10-17 18:16 ` [PATCH] Fix socfpga compilation with early_printk() enabled Pavel Machek
2012-10-25 14:58 ` Arnd Bergmann
2012-10-27 11:56 ` Pavel Machek
2012-10-27 15:39 ` Arnd Bergmann
2012-10-28 23:01 ` arm-soc tree was " Pavel Machek
2012-10-28 23:13 ` Pavel Machek
2012-10-29 4:41 ` Arnd Bergmann
2012-10-30 16:03 ` Pawel Moll
2012-10-29 4:45 ` Arnd Bergmann
2012-10-29 0:27 ` [PATCH for soc] socfpga: map uart into virtual address space so that early_printk() works Pavel Machek
2012-11-03 11:26 ` Pavel Machek
2012-11-05 17:18 ` Olof Johansson
2012-06-27 20:27 ` [RFC PATCHv1 1/2] ARM: socfpga: initial support for Altera's SOCFPGA platform Pavel Machek
2012-06-30 18:57 ` Pavel Machek [this message]
2012-07-01 18:10 ` Pavel Machek
2012-07-04 10:56 ` Pavel Machek
2012-07-04 11:10 ` Thomas Petazzoni
2012-07-04 11:23 ` Pavel Machek
2012-07-04 14:30 ` Dinh Nguyen
2012-07-09 10:58 ` Pavel Machek
2012-07-04 11:15 ` Pavel Machek
2012-07-04 11:21 ` Thomas Petazzoni
2012-07-04 17:56 ` Rob Herring
2012-07-09 11:30 ` Pavel Machek
2012-07-09 13:25 ` Rob Herring
2012-07-10 9:48 ` Pavel Machek
2012-07-09 11:52 ` Pavel Machek
2012-07-09 12:06 ` Pavel Machek
2012-07-09 12:10 ` Pavel Machek
2012-06-27 13:50 ` [RFC PATCHv1 2/2] ARM: socfpga: Add board support for Altera's SOCFPGA Cyclone 5 HW dinguyen at altera.com
2012-06-27 14:25 ` Thomas Petazzoni
2012-06-27 21:06 ` Pavel Machek
2012-06-27 22:19 ` Thomas Petazzoni
2012-06-28 0:00 ` Pavel Machek
2012-07-10 11:15 ` Pavel Machek
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120630185743.GA4536@elf.ucw.cz \
--to=pavel@denx.de \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).