From: Jun S. <ju...@us...> - 2001-11-09 19:57:36
|
Update of /cvsroot/linux-mips/linux/arch/mips/korva In directory usw-pr-cvs1:/tmp/cvs-serv29166/arch/mips/korva Modified Files: setup.c Log Message: Always use external clock for UART. Index: setup.c =================================================================== RCS file: /cvsroot/linux-mips/linux/arch/mips/korva/setup.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- setup.c 2001/10/30 21:43:37 1.5 +++ setup.c 2001/11/09 19:57:33 1.6 @@ -108,7 +108,10 @@ // korva_out32(KORVA_S_WRCR, 0x1f); korva_out32(KORVA_S_WRCR, 0x0f); - /* enable IBUS arbitration for peripherals */ - korva_set_bits(KORVA_S_GMR, 0x2); + /* + * enable IBUS arbitration for peripherals and use extern clock + * for serial port + */ + korva_set_bits(KORVA_S_GMR, 0x2 | 0x8); } |