910-Revert-earlycon-initialise-baud-field-of-earlycon-de.patch 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <[email protected]>
  2. Subject: [PATCH] Revert "earlycon: initialise baud field of earlycon device
  3. structure"
  4. MIME-Version: 1.0
  5. Content-Type: text/plain; charset=UTF-8
  6. Content-Transfer-Encoding: 8bit
  7. This reverts commit 31cb9a8575ca04f47ea113434d4782b695638b62.
  8. It broke earlycon on BCM5301X. Using:
  9. 1) uartclk 1843200 (BASE_BAUD * 16)
  10. 2) early_console_dev.baud 115200
  11. results in init_port() calculating UART divisor 1. That's a wrong value
  12. (default one is 54) that breaks serial console output.
  13. Signed-off-by: Rafał Miłecki <[email protected]>
  14. ---
  15. --- a/drivers/tty/serial/earlycon.c
  16. +++ b/drivers/tty/serial/earlycon.c
  17. @@ -285,12 +285,7 @@ int __init of_setup_earlycon(const struc
  18. }
  19. }
  20. - val = of_get_flat_dt_prop(node, "current-speed", NULL);
  21. - if (val)
  22. - early_console_dev.baud = be32_to_cpu(*val);
  23. -
  24. if (options) {
  25. - early_console_dev.baud = simple_strtoul(options, NULL, 0);
  26. strlcpy(early_console_dev.options, options,
  27. sizeof(early_console_dev.options));
  28. }