From: NIIBE Y. <gn...@m1...> - 2002-02-26 04:06:46
|
I need following patch to stabilize SolutionEngine SH7709A. I don't know the reason, but access to Area 0 is too fast for SolutionEngine SH7709A. We could set BSC, for normal setting of SolutionEngine SH7709A, more delay is needed (In my case, stnic.c with PINGPONG enabled). I'll apply this to 2.4 too. 2002-02-26 NIIBE Yutaka <gn...@m1...> * arch/sh/kernel/io_se.c (delay): More delay needed for SolutionEngine SH7709A. Index: arch/sh/kernel/io_se.c =================================================================== RCS file: /cvsroot/linuxsh/linux/arch/sh/kernel/io_se.c,v retrieving revision 1.1.1.1 diff -u -3 -p -r1.1.1.1 io_se.c --- arch/sh/kernel/io_se.c 15 Oct 2001 20:44:48 -0000 1.1.1.1 +++ arch/sh/kernel/io_se.c 26 Feb 2002 04:02:06 -0000 @@ -23,6 +23,7 @@ int sh_pcic_io_dummy; static inline void delay(void) { ctrl_inw(0xa0000000); + ctrl_inw(0xa0000000); } /* MS7750 requires special versions of in*, out* routines, since -- |