Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 313848
b: refs/heads/master
c: 719154c
h: refs/heads/master
v: v3
  • Loading branch information
Bob Liu committed Jul 24, 2012
1 parent ba1d608 commit 4a316da
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 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: 0220874aad7160d127f9a95eb556cec2c374cd51
refs/heads/master: 719154c6d1c1a3a404f4ff570c4b36bb2ef868ca
1 change: 0 additions & 1 deletion trunk/arch/blackfin/mach-bf609/boards/ezkit.c
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,6 @@ void bf609_nor_flash_exit(struct platform_device *dev)
peripheral_free_list(pins);

bfin_write32(SMC_GCTL, 0);
return 0;
}

static struct physmap_flash_data ezkit_flash_data = {
Expand Down
3 changes: 3 additions & 0 deletions trunk/arch/blackfin/mach-bf609/include/mach/anomaly.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
#define ANOMALY_05000158 (0)
#define ANOMALY_05000189 (0)
#define ANOMALY_05000198 (0)
#define ANOMALY_05000220 (0)
#define ANOMALY_05000230 (0)
#define ANOMALY_05000231 (0)
#define ANOMALY_05000244 (0)
Expand All @@ -81,7 +82,9 @@
#define ANOMALY_05000323 (0)
#define ANOMALY_05000363 (0)
#define ANOMALY_05000380 (0)
#define ANOMALY_05000448 (0)
#define ANOMALY_05000450 (0)
#define ANOMALY_05000456 (0)
#define ANOMALY_05000480 (0)
#define ANOMALY_05000481 (1)

Expand Down
9 changes: 3 additions & 6 deletions trunk/arch/blackfin/mach-bf609/pm.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,7 @@ void bfin_hibernate_syscontrol(void)
bfin_write32(DPM0_RESTORE5, bfin_read32(DPM0_RESTORE5) | 4);
}

#ifndef CONFIG_BF60x
# define SIC_SYSIRQ(irq) (irq - (IRQ_CORETMR + 1))
#else
# define SIC_SYSIRQ(irq) ((irq) - IVG15)
#endif
#define IRQ_SID(irq) ((irq) - IVG15)
asmlinkage void enter_deepsleep(void);

__attribute__((l1_text))
Expand Down Expand Up @@ -314,6 +310,8 @@ static struct syscore_ops smc_pm_syscore_ops = {
static irqreturn_t test_isr(int irq, void *dev_id)
{
printk(KERN_DEBUG "gpio irq %d\n", irq);
if (irq == 231)
bfin_sec_raise_irq(IRQ_SID(IRQ_SOFT1));
return IRQ_HANDLED;
}

Expand All @@ -323,7 +321,6 @@ static irqreturn_t dpm0_isr(int irq, void *dev_id)
bfin_write32(CGU0_STAT, bfin_read32(CGU0_STAT));
return IRQ_HANDLED;
}
#endif

static int __init bf609_init_pm(void)
{
Expand Down
6 changes: 3 additions & 3 deletions trunk/arch/blackfin/mach-common/ints-priority.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ static void bfin_sec_set_priority(unsigned int sec_int_levels, u8 *sec_int_prior
hard_local_irq_restore(flags);
}

static void bfin_sec_raise_irq(unsigned int sid)
void bfin_sec_raise_irq(unsigned int sid)
{
unsigned long flags = hard_local_irq_save();

Expand Down Expand Up @@ -434,10 +434,10 @@ void handle_core_fault(unsigned int irq, struct irq_desc *desc)
panic("Kernel core hardware error");
break;
case IRQ_C0_NMI_L1_PARITY_ERR:
panic("NMI %d occurs unexpectedly");
panic("NMI occurs unexpectedly");
break;
default:
panic("Core 1 fault %d occurs unexpectedly");
panic("Core 1 fault occurs unexpectedly");
}

raw_spin_unlock(&desc->lock);
Expand Down

0 comments on commit 4a316da

Please sign in to comment.