Re: [PATCH v5 1/3] spi: airoha-snfi: en7523: workaround flash damaging if UART_TXD was short to GND

From: Andy Shevchenko
Date: Tue Nov 25 2025 - 15:26:29 EST


On Tue, Nov 25, 2025 at 10:16:33PM +0300, Mikhail Kshevetskiy wrote:

...

> + dev_warn(dev, "Detected booting in RESERVED mode (UART_TXD was short to GND).\n");
> + dev_warn(dev, "This mode is known for incorrect DMA reading of some flashes.\n");
> + dev_warn(dev, "Usage of DMA for flash operations will be disabled to prevent data\n");
> + dev_warn(dev, "damage. Unplug your serial console and power cycle the board\n");
> + dev_warn(dev, "to boot with full performance.\n");

One non-critical remark (for the future), the '\n' in the string literals when
we print messages has two meanings:
- (obviously) new line
- (seems not so obvious for people) flush the line to the output device

Due to the second property the messages might be interleaved with the other
messages (assuming SMP machine actively doing and printing something), hence
your messages might be split with other and imagine the user who gets in the
middle of the text something like

"Usage of DMA for flash operations will be disabled to prevent data"

The first thought will be "what the heck does this mean?"

TL;DR: place '\n' with a care in the messages to print not only here,
but in general.

--
With Best Regards,
Andy Shevchenko