Skip to content

Commit

Permalink
[Blackfin] arch: Fix CONFIG_PM support for BF561
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
  • Loading branch information
Michael Hennerich authored and Bryan Wu committed Feb 25, 2008
1 parent 9253d02 commit 3927819
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 2 additions & 4 deletions arch/blackfin/mach-common/dpmc.S
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
#include <asm/blackfin.h>
#include <asm/mach/irq.h>

.text

#if !defined(CONFIG_BF561)

.section .l1.text

Expand Down Expand Up @@ -328,10 +325,12 @@ ENTRY(_set_sic_iwr)
RTS;

ENTRY(_set_rtc_istat)
#ifndef CONFIG_BF561
P0.H = hi(RTC_ISTAT);
P0.L = lo(RTC_ISTAT);
w[P0] = R0.L;
SSYNC;
#endif
RTS;

ENTRY(_test_pll_locked)
Expand All @@ -342,4 +341,3 @@ ENTRY(_test_pll_locked)
CC = BITTST(R0,5);
IF !CC JUMP 1b;
RTS;
#endif
3 changes: 2 additions & 1 deletion include/asm-blackfin/mach-bf561/blackfin.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
#define bfin_read_FIO_INEN() bfin_read_FIO0_INEN()
#define bfin_write_FIO_INEN(val) bfin_write_FIO0_INEN(val)


#define SIC_IWR0 SICA_IWR0
#define SIC_IWR1 SICA_IWR1
#define SIC_IAR0 SICA_IAR0
#define bfin_write_SIC_IMASK0 bfin_write_SICA_IMASK0
#define bfin_write_SIC_IMASK1 bfin_write_SICA_IMASK1
Expand Down

0 comments on commit 3927819

Please sign in to comment.