-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 149299 b: refs/heads/master c: 0e4a34b h: refs/heads/master i: 149297: 2201eb5 149295: ef127b3 v: v3
- Loading branch information
wanzongshun
authored and
Russell King
committed
Jun 11, 2009
1 parent
b434379
commit 2e7eb68
Showing
9 changed files
with
165 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: c52d3d688b09c50de12cb2fbdfebb18b3b664b00 | ||
refs/heads/master: 0e4a34bb6565346a8d7cc56cab412a1f98d5b1cd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
/* | ||
* linux/arch/arm/mach-w90x900/clock.c | ||
* | ||
* Copyright (c) 2008 Nuvoton technology corporation | ||
* | ||
* Wan ZongShun <mcuos.com@gmail.com> | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include <linux/module.h> | ||
#include <linux/kernel.h> | ||
#include <linux/list.h> | ||
#include <linux/errno.h> | ||
#include <linux/err.h> | ||
#include <linux/string.h> | ||
#include <linux/clk.h> | ||
#include <linux/spinlock.h> | ||
#include <linux/platform_device.h> | ||
#include <linux/io.h> | ||
|
||
#include <mach/hardware.h> | ||
|
||
#include "clock.h" | ||
|
||
static DEFINE_SPINLOCK(clocks_lock); | ||
|
||
int clk_enable(struct clk *clk) | ||
{ | ||
unsigned long flags; | ||
|
||
spin_lock_irqsave(&clocks_lock, flags); | ||
if (clk->enabled++ == 0) | ||
(clk->enable)(clk, 1); | ||
spin_unlock_irqrestore(&clocks_lock, flags); | ||
|
||
return 0; | ||
} | ||
EXPORT_SYMBOL(clk_enable); | ||
|
||
void clk_disable(struct clk *clk) | ||
{ | ||
unsigned long flags; | ||
|
||
WARN_ON(clk->enabled == 0); | ||
|
||
spin_lock_irqsave(&clocks_lock, flags); | ||
if (--clk->enabled == 0) | ||
(clk->enable)(clk, 0); | ||
spin_unlock_irqrestore(&clocks_lock, flags); | ||
} | ||
EXPORT_SYMBOL(clk_disable); | ||
|
||
void w90x900_clk_enable(struct clk *clk, int enable) | ||
{ | ||
unsigned int clocks = clk->cken; | ||
unsigned long clken; | ||
|
||
clken = __raw_readl(W90X900_VA_CLKPWR); | ||
|
||
if (enable) | ||
clken |= clocks; | ||
else | ||
clken &= ~clocks; | ||
|
||
__raw_writel(clken, W90X900_VA_CLKPWR); | ||
} | ||
|
||
void clks_register(struct clk_lookup *clks, size_t num) | ||
{ | ||
int i; | ||
|
||
for (i = 0; i < num; i++) | ||
clkdev_add(&clks[i]); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* linux/arch/arm/mach-w90x900/clock.h | ||
* | ||
* Copyright (c) 2008 Nuvoton technology corporation | ||
* | ||
* Wan ZongShun <mcuos.com@gmail.com> | ||
* | ||
* 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. | ||
*/ | ||
|
||
#include <asm/clkdev.h> | ||
|
||
void w90x900_clk_enable(struct clk *clk, int enable); | ||
void clks_register(struct clk_lookup *clks, size_t num); | ||
|
||
struct clk { | ||
unsigned long cken; | ||
unsigned int enabled; | ||
void (*enable)(struct clk *, int enable); | ||
}; | ||
|
||
#define DEFINE_CLK(_name, _ctrlbit) \ | ||
struct clk clk_##_name = { \ | ||
.enable = w90x900_clk_enable, \ | ||
.cken = (1 << _ctrlbit), \ | ||
} | ||
|
||
#define DEF_CLKLOOK(_clk, _devname, _conname) \ | ||
{ \ | ||
.clk = _clk, \ | ||
.dev_id = _devname, \ | ||
.con_id = _conname, \ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#ifndef __ASM_MACH_CLKDEV_H | ||
#define __ASM_MACH_CLKDEV_H | ||
|
||
#define __clk_get(clk) ({ 1; }) | ||
#define __clk_put(clk) do { } while (0) | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters