X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fu-boot.git;a=blobdiff_plain;f=drivers%2Fserial%2Fserial_arc.c;fp=drivers%2Fserial%2Fserial_arc.c;h=55d07691fcf227a65eebfee94f9710b096c57c6b;hp=e63d25d7949a47bbd73efc97e80685d162215c19;hb=1d568c7666e81fa920de38a3c83895764ea8cf0f;hpb=6853e6aa77b388998a5368b400aee3ae7776b1c2 diff --git a/drivers/serial/serial_arc.c b/drivers/serial/serial_arc.c index e63d25d794..55d07691fc 100644 --- a/drivers/serial/serial_arc.c +++ b/drivers/serial/serial_arc.c @@ -39,7 +39,23 @@ static void arc_serial_setbrg(void) arc_console_baud = gd->cpu_clk / (gd->baudrate * 4) - 1; writel(arc_console_baud & 0xff, ®s->baudl); + +#ifdef CONFIG_ARC + /* + * UART ISS(Instruction Set simulator) emulation has a subtle bug: + * A existing value of Baudh = 0 is used as a indication to startup + * it's internal state machine. + * Thus if baudh is set to 0, 2 times, it chokes. + * This happens with BAUD=115200 and the formaula above + * Until that is fixed, when running on ISS, we will set baudh to !0 + */ + if (gd->arch.running_on_hw) + writel((arc_console_baud & 0xff00) >> 8, ®s->baudh); + else + writel(1, ®s->baudh); +#else writel((arc_console_baud & 0xff00) >> 8, ®s->baudh); +#endif } static int arc_serial_init(void)