Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 29600
b: refs/heads/master
c: 1d81eed
h: refs/heads/master
v: v3
  • Loading branch information
Lennert Buytenhek authored and Russell King committed Jun 24, 2006
1 parent 590a7d6 commit 389fee1
Show file tree
Hide file tree
Showing 21 changed files with 184 additions and 4 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: 52e3e772a098274df3c6f5f1ad58cd7fe24089bf
refs/heads/master: 1d81eedb8f6c13c262a70b8167530ec24b09c0ff
2 changes: 1 addition & 1 deletion trunk/arch/arm/kernel/iwmmxt.S
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ ENTRY(iwmmxt_task_restore)
*
* r0 = previous task_struct pointer (must be preserved)
* r1 = previous thread_info pointer
* r2 = next thread_info pointer (must be preserved)
* r2 = next thread_info.cpu_domain pointer (must be preserved)
*
* Called only from __switch_to with task preemption disabled.
* No need to care about preserving r4 and above.
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/arm/mach-ep93xx/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Makefile for the linux kernel.
#
obj-y := core.o
obj-y := core.o clock.o
obj-m :=
obj-n :=
obj- :=
Expand Down
156 changes: 156 additions & 0 deletions trunk/arch/arm/mach-ep93xx/clock.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
/*
* arch/arm/mach-ep93xx/clock.c
* Clock control for Cirrus EP93xx chips.
*
* Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*/

#include <linux/kernel.h>
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/string.h>
#include <asm/div64.h>
#include <asm/hardware.h>
#include <asm/io.h>

struct clk {
char *name;
unsigned long rate;
int users;
u32 enable_reg;
u32 enable_mask;
};

static struct clk clk_pll1 = {
.name = "pll1",
};
static struct clk clk_f = {
.name = "fclk",
};
static struct clk clk_h = {
.name = "hclk",
};
static struct clk clk_p = {
.name = "pclk",
};
static struct clk clk_pll2 = {
.name = "pll2",
};
static struct clk clk_usb_host = {
.name = "usb_host",
.enable_reg = EP93XX_SYSCON_CLOCK_CONTROL,
.enable_mask = EP93XX_SYSCON_CLOCK_USH_EN,
};


static struct clk *clocks[] = {
&clk_pll1,
&clk_f,
&clk_h,
&clk_p,
&clk_pll2,
&clk_usb_host,
};

struct clk *clk_get(struct device *dev, const char *id)
{
int i;

for (i = 0; i < ARRAY_SIZE(clocks); i++) {
if (!strcmp(clocks[i]->name, id))
return clocks[i];
}

return ERR_PTR(-ENOENT);
}

int clk_enable(struct clk *clk)
{
if (!clk->users++ && clk->enable_reg) {
u32 value;

value = __raw_readl(clk->enable_reg);
__raw_writel(value | clk->enable_mask, clk->enable_reg);
}

return 0;
}

void clk_disable(struct clk *clk)
{
if (!--clk->users && clk->enable_reg) {
u32 value;

value = __raw_readl(clk->enable_reg);
__raw_writel(value & ~clk->enable_mask, clk->enable_reg);
}
}

unsigned long clk_get_rate(struct clk *clk)
{
return clk->rate;
}

void clk_put(struct clk *clk)
{
}



static char fclk_divisors[] = { 1, 2, 4, 8, 16, 1, 1, 1 };
static char hclk_divisors[] = { 1, 2, 4, 5, 6, 8, 16, 32 };
static char pclk_divisors[] = { 1, 2, 4, 8 };

/*
* PLL rate = 14.7456 MHz * (X1FBD + 1) * (X2FBD + 1) / (X2IPD + 1) / 2^PS
*/
static unsigned long calc_pll_rate(u32 config_word)
{
unsigned long long rate;
int i;

rate = 14745600;
rate *= ((config_word >> 11) & 0x1f) + 1; /* X1FBD */
rate *= ((config_word >> 5) & 0x3f) + 1; /* X2FBD */
do_div(rate, (config_word & 0x1f) + 1); /* X2IPD */
for (i = 0; i < ((config_word >> 16) & 3); i++) /* PS */
rate >>= 1;

return (unsigned long)rate;
}

void ep93xx_clock_init(void)
{
u32 value;

value = __raw_readl(EP93XX_SYSCON_CLOCK_SET1);
if (!(value & 0x00800000)) { /* PLL1 bypassed? */
clk_pll1.rate = 14745600;
} else {
clk_pll1.rate = calc_pll_rate(value);
}
clk_f.rate = clk_pll1.rate / fclk_divisors[(value >> 25) & 0x7];
clk_h.rate = clk_pll1.rate / hclk_divisors[(value >> 20) & 0x7];
clk_p.rate = clk_h.rate / pclk_divisors[(value >> 18) & 0x3];

value = __raw_readl(EP93XX_SYSCON_CLOCK_SET2);
if (!(value & 0x00080000)) { /* PLL2 bypassed? */
clk_pll2.rate = 14745600;
} else if (value & 0x00040000) { /* PLL2 enabled? */
clk_pll2.rate = calc_pll_rate(value);
} else {
clk_pll2.rate = 0;
}
clk_usb_host.rate = clk_pll2.rate / (((value >> 28) & 0xf) + 1);

printk(KERN_INFO "ep93xx: PLL1 running at %ld MHz, PLL2 at %ld MHz\n",
clk_pll1.rate / 1000000, clk_pll2.rate / 1000000);
printk(KERN_INFO "ep93xx: FCLK %ld MHz, HCLK %ld MHz, PCLK %ld MHz\n",
clk_f.rate / 1000000, clk_h.rate / 1000000,
clk_p.rate / 1000000);
}
2 changes: 2 additions & 0 deletions trunk/arch/arm/mach-ep93xx/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ void __init ep93xx_init_devices(void)
{
unsigned int v;

ep93xx_clock_init();

/*
* Disallow access to MaverickCrunch initially.
*/
Expand Down
1 change: 0 additions & 1 deletion trunk/arch/arm/mach-ixp2000/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,6 @@ void gpio_line_config(int line, int direction)
}
local_irq_restore(flags);
}
EXPORT_SYMBOL(gpio_line_config);


/*************************************************************************
Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-aaec2000/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
*/
#define __io(a) ((void __iomem *)(a))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-clps711x/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

#define __io(a) ((void __iomem *)(a))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

/*
* We don't support ins[lb]/outs[lb]. Make them fault.
Expand Down
8 changes: 8 additions & 0 deletions trunk/include/asm-arm/arch-ebsa285/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#define __io(a) ((void __iomem *)(PCIO_BASE + (a)))
#if 1
#define __mem_pci(a) (a)
#define __mem_isa(a) ((a) + PCIMEM_BASE)
#else

static inline void __iomem *___mem_pci(void __iomem *p)
Expand All @@ -33,7 +34,14 @@ static inline void __iomem *___mem_pci(void __iomem *p)
return p;
}

static inline void __iomem *___mem_isa(void __iomem *p)
{
unsigned long a = (unsigned long)p;
BUG_ON(a >= 16*1048576);
return p + PCIMEM_BASE;
}
#define __mem_pci(a) ___mem_pci(a)
#define __mem_isa(a) ___mem_isa(a)
#endif

#endif
2 changes: 2 additions & 0 deletions trunk/include/asm-arm/arch-ep93xx/ep93xx-regs.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@
#define EP93XX_SYSCON_CLOCK_USH_EN 0x10000000
#define EP93XX_SYSCON_HALT EP93XX_SYSCON_REG(0x08)
#define EP93XX_SYSCON_STANDBY EP93XX_SYSCON_REG(0x0c)
#define EP93XX_SYSCON_CLOCK_SET1 EP93XX_SYSCON_REG(0x20)
#define EP93XX_SYSCON_CLOCK_SET2 EP93XX_SYSCON_REG(0x24)
#define EP93XX_SYSCON_DEVICE_CONFIG EP93XX_SYSCON_REG(0x80)
#define EP93XX_SYSCON_DEVICE_CONFIG_CRUNCH_ENABLE 0x00800000
#define EP93XX_SYSCON_SWLOCK EP93XX_SYSCON_REG(0xc0)
Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-ep93xx/platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ void ep93xx_map_io(void);
void ep93xx_init_irq(void);
void ep93xx_init_time(unsigned long);
void ep93xx_init_devices(void);
void ep93xx_clock_init(void);
extern struct sys_timer ep93xx_timer;


Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-integrator/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@

#define __io(a) ((void __iomem *)(PCI_IO_VADDR + (a)))
#define __mem_pci(a) (a)
#define __mem_isa(a) ((a) + PCI_MEMORY_VADDR)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-iop3xx/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@

#define __io(p) ((void __iomem *)(p))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-l7200/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*/
#define __io_pci(a) ((void __iomem *)(PCIO_BASE + (a)))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#define __ioaddr(p) __io_pci(p)

Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-lh7a40x/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
/* No ISA or PCI bus on this machine. */
#define __io(a) ((void __iomem *)(a))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif /* __ASM_ARCH_IO_H */
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-netx/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,6 @@

#define __io(a) ((void __iomem *)(a))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-omap/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
*/
#define __io(a) ((void __iomem *)(PCIO_BASE + (a)))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

/*
* ----------------------------------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-pxa/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@
*/
#define __io(a) ((void __iomem *)(a))
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-realview/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ static inline void __iomem *__io(unsigned long addr)

#define __io(a) __io(a)
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-sa1100/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@ static inline void __iomem *__io(unsigned long addr)
}
#define __io(a) __io(a)
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif
1 change: 1 addition & 0 deletions trunk/include/asm-arm/arch-versatile/io.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ static inline void __iomem *__io(unsigned long addr)
}
#define __io(a) __io(a)
#define __mem_pci(a) (a)
#define __mem_isa(a) (a)

#endif

0 comments on commit 389fee1

Please sign in to comment.