Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 339660
b: refs/heads/master
c: e10dd62
h: refs/heads/master
v: v3
  • Loading branch information
Paul Walmsley authored and Tony Lindgren committed Oct 18, 2012
1 parent 68743bb commit bf7db00
Show file tree
Hide file tree
Showing 12 changed files with 60 additions and 64 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a135eaae524acba1509a3b19c97fae556e4da7cd
refs/heads/master: e10dd62ffcb2953f80a4ea6ac53cb489ebfe0a79
1 change: 0 additions & 1 deletion trunk/arch/arm/mach-omap1/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@

#include <plat/cpu.h>
#include <plat/usb.h>
#include <plat/clkdev_omap.h>

#include <mach/hardware.h>

Expand Down
25 changes: 25 additions & 0 deletions trunk/arch/arm/mach-omap1/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,34 @@
#include <linux/clk.h>
#include <linux/list.h>

#include <linux/clkdev.h>

struct module;
struct clk;

struct omap_clk {
u16 cpu;
struct clk_lookup lk;
};

#define CLK(dev, con, ck, cp) \
{ \
.cpu = cp, \
.lk = { \
.dev_id = dev, \
.con_id = con, \
.clk = ck, \
}, \
}

/* Platform flags for the clkdev-OMAP integration code */
#define CK_310 (1 << 0)
#define CK_7XX (1 << 1) /* 7xx, 850 */
#define CK_1510 (1 << 2)
#define CK_16XX (1 << 3) /* 16xx, 17xx, 5912 */
#define CK_1710 (1 << 4) /* 1710 extra for rate selection */


/* Temporary, needed during the common clock framework conversion */
#define __clk_get_name(clk) (clk->name)
#define __clk_get_parent(clk) (clk->parent)
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/arm/mach-omap1/clock_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
#include <asm/mach-types.h> /* for machine_is_* */

#include <plat/cpu.h>
#include <plat/clkdev_omap.h>

#include <mach/hardware.h>
#include <mach/usb.h> /* for OTG_BASE */
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-omap1/opp_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* published by the Free Software Foundation.
*/

#include <plat/clkdev_omap.h>
#include "clock.h"
#include "opp.h"

/*-------------------------------------------------------------------------
Expand Down
33 changes: 33 additions & 0 deletions trunk/arch/arm/mach-omap2/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,39 @@
#include <linux/kernel.h>
#include <linux/list.h>

#include <linux/clkdev.h>

struct omap_clk {
u16 cpu;
struct clk_lookup lk;
};

#define CLK(dev, con, ck, cp) \
{ \
.cpu = cp, \
.lk = { \
.dev_id = dev, \
.con_id = con, \
.clk = ck, \
}, \
}

/* Platform flags for the clkdev-OMAP integration code */
#define CK_242X (1 << 0)
#define CK_243X (1 << 1) /* 243x, 253x */
#define CK_3430ES1 (1 << 2) /* 34xxES1 only */
#define CK_3430ES2PLUS (1 << 3) /* 34xxES2, ES3, non-Sitara 35xx only */
#define CK_AM35XX (1 << 4) /* Sitara AM35xx */
#define CK_36XX (1 << 5) /* 36xx/37xx-specific clocks */
#define CK_443X (1 << 6)
#define CK_TI816X (1 << 7)
#define CK_446X (1 << 8)
#define CK_AM33XX (1 << 9) /* AM33xx specific clocks */


#define CK_34XX (CK_3430ES1 | CK_3430ES2PLUS)
#define CK_3XXX (CK_34XX | CK_AM35XX | CK_36XX)

struct module;
struct clk;
struct clockdomain;
Expand Down
2 changes: 0 additions & 2 deletions trunk/arch/arm/mach-omap2/clock2420_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
#include <linux/clk.h>
#include <linux/list.h>

#include <plat/clkdev_omap.h>

#include "soc.h"
#include "iomap.h"
#include "clock.h"
Expand Down
2 changes: 0 additions & 2 deletions trunk/arch/arm/mach-omap2/clock2430_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
#include <linux/clk.h>
#include <linux/list.h>

#include <plat/clkdev_omap.h>

#include "soc.h"
#include "iomap.h"
#include "clock.h"
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/arm/mach-omap2/clock33xx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#include <linux/kernel.h>
#include <linux/list.h>
#include <linux/clk.h>
#include <plat/clkdev_omap.h>

#include "am33xx.h"
#include "iomap.h"
Expand Down
2 changes: 0 additions & 2 deletions trunk/arch/arm/mach-omap2/clock3xxx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
#include <linux/list.h>
#include <linux/io.h>

#include <plat/clkdev_omap.h>

#include "soc.h"
#include "iomap.h"
#include "clock.h"
Expand Down
2 changes: 0 additions & 2 deletions trunk/arch/arm/mach-omap2/clock44xx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@
#include <linux/clk.h>
#include <linux/io.h>

#include <plat/clkdev_omap.h>

#include "soc.h"
#include "iomap.h"
#include "clock.h"
Expand Down
51 changes: 0 additions & 51 deletions trunk/arch/arm/plat-omap/include/plat/clkdev_omap.h

This file was deleted.

0 comments on commit bf7db00

Please sign in to comment.