Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
1f63b954
Commit
1f63b954
authored
Feb 07, 2011
by
Russell King
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes'
parents
4a683a2c
d8cff136
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
18 additions
and
13 deletions
+18
-13
arch/arm/mach-ep93xx/core.c
arch/arm/mach-ep93xx/core.c
+1
-1
arch/arm/mach-imx/mach-mx25_3ds.c
arch/arm/mach-imx/mach-mx25_3ds.c
+1
-1
arch/arm/mach-mxs/clock-mx23.c
arch/arm/mach-mxs/clock-mx23.c
+2
-2
arch/arm/mach-mxs/clock-mx28.c
arch/arm/mach-mxs/clock-mx28.c
+3
-4
arch/arm/mach-mxs/clock.c
arch/arm/mach-mxs/clock.c
+0
-2
arch/arm/mach-mxs/gpio.c
arch/arm/mach-mxs/gpio.c
+2
-0
arch/arm/mach-mxs/include/mach/clock.h
arch/arm/mach-mxs/include/mach/clock.h
+0
-2
arch/arm/plat-mxc/include/mach/uncompress.h
arch/arm/plat-mxc/include/mach/uncompress.h
+2
-0
sound/arm/aaci.c
sound/arm/aaci.c
+7
-1
No files found.
arch/arm/mach-ep93xx/core.c
View file @
1f63b954
...
...
@@ -838,7 +838,7 @@ EXPORT_SYMBOL(ep93xx_i2s_release);
static
struct
resource
ep93xx_ac97_resources
[]
=
{
{
.
start
=
EP93XX_AAC_PHYS_BASE
,
.
end
=
EP93XX_AAC_PHYS_BASE
+
0x
b0
-
1
,
.
end
=
EP93XX_AAC_PHYS_BASE
+
0x
ac
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
{
...
...
arch/arm/mach-imx/mach-mx25_3ds.c
View file @
1f63b954
...
...
@@ -180,7 +180,7 @@ static const uint32_t mx25pdk_keymap[] = {
KEY
(
3
,
3
,
KEY_POWER
),
};
static
const
struct
matrix_keymap_data
mx25pdk_keymap_data
__init
data
=
{
static
const
struct
matrix_keymap_data
mx25pdk_keymap_data
__init
const
=
{
.
keymap
=
mx25pdk_keymap
,
.
keymap_size
=
ARRAY_SIZE
(
mx25pdk_keymap
),
};
...
...
arch/arm/mach-mxs/clock-mx23.c
View file @
1f63b954
...
...
@@ -304,7 +304,7 @@ static int name##_set_rate(struct clk *clk, unsigned long rate) \
reg = __raw_readl(CLKCTRL_BASE_ADDR + HW_CLKCTRL_##dr); \
reg &= ~BM_CLKCTRL_##dr##_DIV; \
reg |= div << BP_CLKCTRL_##dr##_DIV; \
if (reg
|
(1 << clk->enable_shift)) { \
if (reg
&
(1 << clk->enable_shift)) { \
pr_err("%s: clock is gated\n", __func__); \
return -EINVAL; \
} \
...
...
@@ -347,7 +347,7 @@ static int name##_set_parent(struct clk *clk, struct clk *parent) \
{ \
if (parent != clk->parent) { \
__raw_writel(BM_CLKCTRL_CLKSEQ_BYPASS_##bit, \
HW_CLKCTRL_CLKSEQ_TOG);
\
CLKCTRL_BASE_ADDR + HW_CLKCTRL_CLKSEQ_TOG);
\
clk->parent = parent; \
} \
\
...
...
arch/arm/mach-mxs/clock-mx28.c
View file @
1f63b954
...
...
@@ -355,12 +355,12 @@ static int name##_set_rate(struct clk *clk, unsigned long rate) \
} else { \
reg &= ~BM_CLKCTRL_##dr##_DIV; \
reg |= div << BP_CLKCTRL_##dr##_DIV; \
if (reg
|
(1 << clk->enable_shift)) { \
if (reg
&
(1 << clk->enable_shift)) { \
pr_err("%s: clock is gated\n", __func__); \
return -EINVAL; \
} \
} \
__raw_writel(reg, CLKCTRL_BASE_ADDR + HW_CLKCTRL_
CPU
); \
__raw_writel(reg, CLKCTRL_BASE_ADDR + HW_CLKCTRL_
##dr
); \
\
for (i = 10000; i; i--) \
if (!(__raw_readl(CLKCTRL_BASE_ADDR + \
...
...
@@ -483,7 +483,7 @@ static int name##_set_parent(struct clk *clk, struct clk *parent) \
{ \
if (parent != clk->parent) { \
__raw_writel(BM_CLKCTRL_CLKSEQ_BYPASS_##bit, \
HW_CLKCTRL_CLKSEQ_TOG);
\
CLKCTRL_BASE_ADDR + HW_CLKCTRL_CLKSEQ_TOG);
\
clk->parent = parent; \
} \
\
...
...
@@ -609,7 +609,6 @@ static struct clk_lookup lookups[] = {
_REGISTER_CLOCK
(
"duart"
,
NULL
,
uart_clk
)
_REGISTER_CLOCK
(
"imx28-fec.0"
,
NULL
,
fec_clk
)
_REGISTER_CLOCK
(
"imx28-fec.1"
,
NULL
,
fec_clk
)
_REGISTER_CLOCK
(
"fec.0"
,
NULL
,
fec_clk
)
_REGISTER_CLOCK
(
"rtc"
,
NULL
,
rtc_clk
)
_REGISTER_CLOCK
(
"pll2"
,
NULL
,
pll2_clk
)
_REGISTER_CLOCK
(
NULL
,
"hclk"
,
hbus_clk
)
...
...
arch/arm/mach-mxs/clock.c
View file @
1f63b954
...
...
@@ -57,7 +57,6 @@ static void __clk_disable(struct clk *clk)
if
(
clk
->
disable
)
clk
->
disable
(
clk
);
__clk_disable
(
clk
->
parent
);
__clk_disable
(
clk
->
secondary
);
}
}
...
...
@@ -68,7 +67,6 @@ static int __clk_enable(struct clk *clk)
if
(
clk
->
usecount
++
==
0
)
{
__clk_enable
(
clk
->
parent
);
__clk_enable
(
clk
->
secondary
);
if
(
clk
->
enable
)
clk
->
enable
(
clk
);
...
...
arch/arm/mach-mxs/gpio.c
View file @
1f63b954
...
...
@@ -139,6 +139,8 @@ static void mxs_gpio_irq_handler(u32 irq, struct irq_desc *desc)
struct
mxs_gpio_port
*
port
=
(
struct
mxs_gpio_port
*
)
get_irq_data
(
irq
);
u32
gpio_irq_no_base
=
port
->
virtual_irq_start
;
desc
->
irq_data
.
chip
->
irq_ack
(
&
desc
->
irq_data
);
irq_stat
=
__raw_readl
(
port
->
base
+
PINCTRL_IRQSTAT
(
port
->
id
))
&
__raw_readl
(
port
->
base
+
PINCTRL_IRQEN
(
port
->
id
));
...
...
arch/arm/mach-mxs/include/mach/clock.h
View file @
1f63b954
...
...
@@ -29,8 +29,6 @@ struct clk {
int
id
;
/* Source clock this clk depends on */
struct
clk
*
parent
;
/* Secondary clock to enable/disable with this clock */
struct
clk
*
secondary
;
/* Reference count of clock enable/disable */
__s8
usecount
;
/* Register bit position for clock's enable/disable control. */
...
...
arch/arm/plat-mxc/include/mach/uncompress.h
View file @
1f63b954
...
...
@@ -95,6 +95,7 @@ static __inline__ void __arch_decomp_setup(unsigned long arch_id)
case
MACH_TYPE_MX35_3DS
:
case
MACH_TYPE_PCM043
:
case
MACH_TYPE_LILLY1131
:
case
MACH_TYPE_VPR200
:
uart_base
=
MX3X_UART1_BASE_ADDR
;
break
;
case
MACH_TYPE_MAGX_ZN5
:
...
...
@@ -102,6 +103,7 @@ static __inline__ void __arch_decomp_setup(unsigned long arch_id)
break
;
case
MACH_TYPE_MX51_BABBAGE
:
case
MACH_TYPE_EUKREA_CPUIMX51SD
:
case
MACH_TYPE_MX51_3DS
:
uart_base
=
MX51_UART1_BASE_ADDR
;
break
;
case
MACH_TYPE_MX50_RDP
:
...
...
sound/arm/aaci.c
View file @
1f63b954
...
...
@@ -50,7 +50,11 @@ static void aaci_ac97_select_codec(struct aaci *aaci, struct snd_ac97 *ac97)
if
(
v
&
SLFR_1RXV
)
readl
(
aaci
->
base
+
AACI_SL1RX
);
writel
(
maincr
,
aaci
->
base
+
AACI_MAINCR
);
if
(
maincr
!=
readl
(
aaci
->
base
+
AACI_MAINCR
))
{
writel
(
maincr
,
aaci
->
base
+
AACI_MAINCR
);
readl
(
aaci
->
base
+
AACI_MAINCR
);
udelay
(
1
);
}
}
/*
...
...
@@ -993,6 +997,8 @@ static unsigned int __devinit aaci_size_fifo(struct aaci *aaci)
* disabling the channel doesn't clear the FIFO.
*/
writel
(
aaci
->
maincr
&
~
MAINCR_IE
,
aaci
->
base
+
AACI_MAINCR
);
readl
(
aaci
->
base
+
AACI_MAINCR
);
udelay
(
1
);
writel
(
aaci
->
maincr
,
aaci
->
base
+
AACI_MAINCR
);
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment