Serial console broken on RPi 3 #22

Closed
diederikdehaas opened this Issue Mar 2, 2016 · 83 comments

Comments

Projects
None yet

Using the raspbian-jessie-lite image dd 2016-02-26 (and performing all updates after that), I can't get the serial console working on a RPi 3. When I put the image in a RPi 2, everything is fine.

By not working, I mean that I mostly get garbled output and I am unable to use my keyboard to interact with the system.

There is a forum thread about it and (apparently) someone found a workaround ... by crippling the performance of the RPi 3 by adding core_freq=250 to /boot/cmdline.txt which also reduces the CPU speed to 600 Mhz.

I don't consider that an valid option.

Contributor

XECDesign commented Mar 2, 2016

You can also get around the issue by adding force_turbo=1 to config.txt

It does indeed work 😄

Is there some side effect that causes that? Because logically I don't see the connection ...

Contributor

XECDesign commented Mar 2, 2016

Something to do with the source clock for the serial. I don't know the specifics.

Thanks 👍

Is this the official solution or is there another one in the pipe-line?
I'll leave it up to you to close the issue or not.

Contributor

XECDesign commented Mar 2, 2016

I think I saw someone say that it may have already been fixed in newer firmware, but I couldn't see that in the commit messages.

@pelwell Is this something that can be or has been fixed?

pelwell commented Mar 2, 2016

There are some inescapable facts:

  1. uart1, like the sdhost interface, uses the core clock. If the core clock changes then the baud rate will change.
  2. Bluetooth uses uart0 because it has larger FIFOs and because it is immune to changes in core clock.

You can reduce clock rate fluctuations using force_turbo=1, but there is still the possibility of an enforced clock rate reduction because of an over-temperature situation. Between 80C and 85C the ARM overclock is disabled, then at 85C all other clocks (core, sdram, v3d, isp, h264) are also reduced to minimum.

It may be possible to ameliorate the issue by automatically reprogramming the uart clock divisor when the core clock changes, but that will depend on there being a suitable ratio between the overclock and the minimum. Therefore the only way to be sure that the baud rate doesn't ever change is to set core_freq to minimum to start with, which is 250MHz.

Setting core_freq to 250MHz does not limit the ARMs to 600MHz. Those clocks are all independent.

The main clocks are controlled by the config.txt settings arm_freq, core_freq, sdram_freq, v3d_freq, isp_freq and h264_freq. gpu_freq is an alias for the non-ARM clocks that haven't been set explicitly. Until the most recent firmware there was an oversight that meant that setting core_freq implicitly by setting gpu_freq wasn't being communicated to the Linux world, causing incorrect baud rates. The latest rpi-update firmware fixes that issue, but you can avoid it by using core_freq instead of gpu_freq.

Contributor

XECDesign commented Mar 2, 2016

Ah, thanks for the full explanation.

Related raspberrypi/firmware#553

I have same problems... I can't use my RPI3...
I used Razberry zwave card, and impossible to communicate with !
I try force-turbo but without success!

I put my sdcard into my RPI2 it work like a charm...

I hope problem can be solve quickly.
Thanks

Contributor

XECDesign commented Mar 3, 2016

Careful, that's force_turbo, not force-turbo.

pelwell commented Mar 3, 2016

A user on the other thread has found that gpu_freq=300 works for them.

josn0 commented Mar 4, 2016

Phil (pelwell) is right. I started to retrieve all frequency settings on a earlier Pi (using 'vcgencmd get_config int | grep freq'), copying all to config.txt to overrule the new defaults, and the problem was gone. Then, to get performance back, I stepwise increased the settings until I reached the new defaults (also found with get_config). After I reached all new default settings, everything kept working. Then I commented-out the _freq settings until the problem re-appeared; that was with gpu_freq. So put that back and the problem was all over, without changing any settings. My theory is that, pre-kernel-boot, something needs to set some frequencies, reads them out of the config.txt, and if not present, uses the (old) defaults. I think that is done in the start.elf files. Alas, they are closed-source. But, by grep-ing them, I found the texts 'gpu_freq' and 'config.txt', which makes my assumption more plausible.

Another thing that is probably done there, is 'patching' the kernel's commandline parameters: file 'cmdline.txt' now contains 'console=serial,115200' instead of 'console=ttyAMA0,115200'. But whether the console is named 'serial' or 'ttyAMA0', if you check /proc/cmdline, both are changed to 'ttyS0'. I think that is also done in the start*.elf code.

If so, it is a pity that such non-transparent 'hacks' are buried in closed-source proprietary code. Please dont do that. I can understand that the start*.elf file need to be closed-source, because it needs to interact with the proprietary gpu, but then keep the code in there as small as possible and as transparant as possible. Put strange hacks somewhere else, like in the kernel code, that everyone can read.

'cmdline.txt' now contains 'console=serial,115200' instead of 'console=ttyAMA0,115200'. But whether the console is named 'serial' or 'ttyAMA0', if you check /proc/cmdline, both are changed to 'ttyS0'.

I haven't investigated it, but I noticed that too.

ladyada commented Mar 4, 2016

verifying that the baud rate is ~72Kbps not 115Kbps - works great if I set my serial cable to 72000, note that prolific chipsets (PL230x) cannot do weird baud rates, try an FTDI or SiLabs chip :)

pelwell commented Mar 4, 2016

@josn0 I was surprised that I couldn't find a standard DT mechanism for giving serial ports a chosen name. The PL011 driver attempts to renumber its own instances based on serial aliases, but it calls its instances ttyAMA instead of ttyS and other serial drivers don't seem to obey the same rule.

The reason for the cmdline rewriting by the firmware is to allow a single SD card image to work in any Pi until we have worked out a better mechanism in the kernel. I don't particularly like it but our options were limited and time was short.

@ladyada 72Kbps is 115200*(250/400), with 400 being the standard VPU overclock and 250 being the minimum used in overtemp or undervolt situations. I think you will see the power LED blinking off, indicating undervolt. I had to change my power supply to 2.5A model - I have any inline switch in the USB power cable and with the additional loss it adds the startup current for WiFi and Bluetooth is sufficient to drag the voltage down below the threshold.

I am trying to connect an Arduino @ 38400 baud to the Rpi3 via ttyAMA0 with no joy. Zero comms. Is this related this this thread or should I start another issue? I am using an SD card upgraded from Jessie that worked fine on RPi2. Serial console has been disconnected from terminal in the usual way

pelwell commented Mar 4, 2016

It is related. ttyAMA0 on a Pi3 is configured to communicate with the Bluetooth modem. Try ttyS0.

How can I try ttyS0? I am connecting via Pi's UART pins on GPIO. It;s not
possible for me to physically change the pins since the PCB connected
directly onto the GPIO header.

On 4 March 2016 at 10:18, Phil Elwell notifications@github.com wrote:

It is related. ttyAMA0 on a Pi3 is configured to communicate with the
Bluetooth modem. Try ttyS0.


Reply to this email directly or view it on GitHub
#22 (comment).

Glyn Hudson

http://megni.co.uk
http://adventuresplusnorthwales.blogspot.com

pelwell commented Mar 4, 2016

UART1/MiniUART/ttyS0 is available as Alt function 5 on GPIOs 14 and 15. UART0/ttyAMA0 is Alt function 0. If you run:

sudo apt-get install raspi-gpio     # if you don't have it already
raspi-gpio get 14

on a Pi2 you will see that GPIO14 is mapped to a0 (TXD0), whereas on a Pi3 it is mapped to a5 (TXD1).

In other words, just open ttyS0 instead - the pin-muxing has already been configured to bring it out onto 14 and 15 (pins 8 and 10).

ttyAMA0 on a Pi3 is configured to communicate with the Bluetooth modem. Try ttyS0

Only on the Pi3 or should I use ttyS0 on all Pi's now?

pelwell commented Mar 4, 2016

Only on Pi3. ttyAMA0 is a better serial port, immune from core clock changes, and it would be a shame to deny it to all Pi users just so we can use it for Bluetooth on the Pi3.

Ok, thanks for the info.

Right now we use the following as the start of our cmdline.txt:
cmdline="dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 elevator=deadline"
I can make the ttyAMA0/ttyS0 conditional based on the Pi version detected during installation, but AFAICS now that would make it so that you can't just swap the card to another Pi version and use the serial console.
Ideas? (besides documenting it)

grigorig commented Mar 4, 2016

How much does core_freq=250 affect performance, really? I wasn't able to measure any difference with some simple CPU benchmarks. It might be a suitable workaround if you absolutely need a stable Mini UART. Still, is there any way to change behaviour in low voltage or thermal event situations? It doesn't look like setting core_freq_min has any effect.

pelwell commented Mar 4, 2016

That's what the "serial" aliases were created for. The firmware will look for console=serial0 and replace it with ttyS0 on a Pi3 or ttyAMA0 otherwise. It also replaces console=ttyAMA0 on a Pi3 with console=ttyS0 to help users with upgraded images. Unfortunately it doesn't detect kgdboc=serial<n>.

I can easily improve the mechanism to also work for kgdboc, but I also want to base the rewriting on the contents of the DTB rather than have it hard-coded for the Pi3, so that users who don't need Bluetooth can restore the previous behaviour with a DT overlay.

Thanks again 👍

Thanks @pelwell that explains it.

Using ttyS0 I can see serial coms from my device (ATmega328 @ 38400 baud), however there also seems to be some other unexpected traffic on the same port. Serial messages from my device are slightly garbled and my device is reporting receiving serial traffic when minicom is open. I have tried adding core_freq=250 or force_turbo=1 or pi3-disable-bt to cmdline.txt, and nothing seem to have much of an effect. Does the order in cmdline.txt make a difference?

pelwell commented Mar 4, 2016

The order in cmdline.txt and config.txt shouldn't make any differences. DT overlays are applied in order, but provided the overlays don't overlap then there shouldn't be a problem.

If you are seeing garbled serial port data when the core frequency is fixed then it suggests that the CPU is being throttled due to over-temperate or under-voltage (but that won't happen if you have pegged the core at 250MHz). A 2.5A power supply is recommended.

I've just completed a firmware mod that improves the serial port alias handling:

  1. It will search for any existing "serial0" in the DT, allowing the pi3-disable-bt alias to also disable the remapping.
  2. It now searches for "=serial0", "=ttyAMA0" etc. instead of "config=...", so it will work with "kgdboc=serial0,115200" etc.

popcornmix added a commit to raspberrypi/firmware that referenced this issue Mar 4, 2016

firmware: arm_loader: Improve serial port aliasing
See: RPi-Distro/repo#22

firmware: Pi3: Reduce desired ring osc and attempt to make temperature reading more accurate

popcornmix added a commit to Hexxeh/rpi-firmware that referenced this issue Mar 4, 2016

firmware: arm_loader: Improve serial port aliasing
See: RPi-Distro/repo#22

firmware: Pi3: Reduce desired ring osc and attempt to make temperature reading more accurate

swarren referenced this issue in swarren/u-boot Mar 6, 2016

WIP: RPi 3 (32-bit) port
FIXME:
- split up into n patches
- describe

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>

lurch commented Mar 8, 2016

That's what the "serial" aliases were created for. The firmware will look for console=serial0 and replace it with ttyS0 on a Pi3 or ttyAMA0 otherwise. It also replaces console=ttyAMA0 on a Pi3 with console=ttyS0 to help users with upgraded images.

Would it also be possible to do something similarly clever with udev rules, so that Linux-side applications could be configured to use e.g. /dev/serial0 or similar; which would be a symlink to /dev/ttyS0 on a Pi3 or a symlink to /dev/ttyAMA0 on other models? (thereby allowing the same application to work the same on all Pi models without reconfiguration)

pelwell commented Mar 8, 2016

Either udev or, if we can't make that work, a systemd script - all it would take is sudo cp -pR /dev/ttyS0 /dev/serial0 with a bit of logic to work out which alias goes where.

lurch commented Mar 9, 2016

...and then once it's included in Raspbian by default, maybe raspi-config could be modified to be take advantage of the /dev device aliasing/symlinking too?

I'm not familiar with udev / systemd / etc. but is there any reason that sudo cp -pR /dev/ttyS0 /dev/serial0 is better than sudo ln -s /dev/ttyS0 /dev/serial0 ?

Contributor

XECDesign commented Mar 9, 2016

I think I've come up with some rules.

KERNEL=="ttyS0", PROGRAM="/bin/sh -c 'if [ -d /proc/device-tree/soc/gpio@7e200000/bt_pins ]; then echo 0; else echo 1; fi;'", SYMLINK+="serial%c"
KERNEL=="ttyAMA0", PROGRAM="/bin/sh -c 'if [ -d /proc/device-tree/soc/gpio@7e200000/bt_pins ]; then echo 1; else echo 0; fi;'", SYMLINK+="serial%c"

%c is replaced with output of PROGRAM. Not sure if the check itself is good enough, but it seems to work for the simple/default case.

Edit:
A bit confused about ownership though. I was under the impression that serial devices should belong to the dialout group, but ttyS0 belongs to tty.

lrwxrwxrwx 1 root root          5 Mar  9 02:44 /dev/serial0 -> ttyS0
lrwxrwxrwx 1 root root          7 Mar  9 02:44 /dev/serial1 -> ttyAMA0
crw-rw---- 1 root dialout 204, 64 Mar  9 02:44 /dev/ttyAMA0
crw--w---- 1 root tty       4, 64 Mar  9 02:44 /dev/ttyS0

pelwell commented Mar 9, 2016

Thanks - that PROGRAM usage completes the puzzle for me. Leaving aside ownership, these rules work for me:

KERNEL=="ttyAMA[01]", PROGRAM="/bin/sh -c 'ALIASES=/proc/device-tree/aliases; if cmp -s $ALIASES/uart0 $ALIASES/serial0; then echo 0; elif cmp -s $ALIASES/uart0 $ALIASES/serial1; then echo 1; else exit 1; fi'", SYMLINK+="serial%c"
KERNEL=="ttyS0", PROGRAM="/bin/sh -c 'ALIASES=/proc/device-tree/aliases; if cmp -s $ALIASES/uart1 $ALIASES/serial0; then echo 0; elif cmp -s $ALIASES/uart1 $ALIASES/serial1; then echo 1; else exit 1; fi'", SYMLINK+="serial%c"

with a modified hciuart.service:

[Unit]
Description=Configure Bluetooth Modems connected by UART
ConditionPathIsDirectory=/proc/device-tree/soc/gpio@7e200000/bt_pins
Before=bluetooth.service
After=udev.service
ConditionPathExists=/dev/serial1

[Service]
Type=forking
ExecStart=/usr/bin/hciattach /dev/serial1 bcm43xx 921600 noflow -

[Install]
WantedBy=multi-user.target

The rule accepts ttyAMA1 as well as ttyAMA0 in case we drop the patch that prevents the port renumbering.

grigorig commented Mar 9, 2016

There's another problem when it comes to Bluetooth: you have to reduce the baudrate to make it work with the Mini UART.

pelwell commented Mar 9, 2016

Yes. That's why Bluetooth is configured to use ttyAMA0 by default, and why the pi3-miniuart-bt overlay documentation says:

Note that this may reduce the maximum usable baudrate.

@diederikdehaas diederikdehaas referenced this issue in debian-pi/raspbian-ua-netinst Mar 11, 2016

Closed

Question - RaspberryPi 3 Compatibility #375

Contributor

XECDesign commented Mar 11, 2016

Should we change cmdline.txt to use serial0 by default?

Regarding permissions, it seems like when getty runs, it changes the ownership group to tty, then login changes it to the logged in user.

pelwell commented Mar 11, 2016

Yes we should - has that not happened yet? We did talk about it.

Contributor

XECDesign commented Mar 11, 2016

Wasn't sure, thanks.

manasb commented Apr 14, 2016

Was directed here from the Adafruit forums

I tried connecting to the Pi 3b's serial console through the GPIO ports with this cable https://www.adafruit.com/products/954

screenshot

This is what I saw on the screen upon attempting to connect with screen /dev/ttyUSB0 115200

pelwell commented Apr 14, 2016

I suspect that if you add enable_uart=1 to config.txt and sudo rpi-update then the corruption will go away, but at the expense of fixing the core_freq to 250 (MHz). You can achieve the same effect by just adding core_freq=250 to your config.txt, but remember to remove it when you eventually update.

manasb commented Apr 14, 2016

@pelwell I am unable to send reliable input to the Pi over the serial connection. Is there some other way to apply those changes?

pelwell commented Apr 14, 2016

Either plug in a monitor and keyboard or take out the SD card and edit it in another computer.

manasb commented Apr 14, 2016

@pelwell Great, thanks! I don't have a HDMI cable but I can edit on a different computer :)

manasb commented Apr 14, 2016

@pelwell I tried making that change and booting again. My input & output are both still mostly garbled.

pelwell commented Apr 14, 2016

That should have said core_freq=250. Now fixed.

manasb commented Apr 14, 2016

@pelwell It works now, thanks for your help.

It Works

manasb commented Apr 15, 2016

I have run rpi-update and it works:

Linux raspberrypi 4.4.7-v7+ #876 SMP Tue Apr 12 22:28:41 BST 2016 armv7l GNU/Linux

Arun22 commented Apr 16, 2016

Hi, i was using my Pi3 for last few weeks.my serial output was good after i fix the core_clock to 250.
I just update my kernel/firmware using rpi-update and reboot the Pi3 yesterday. after that point i couldn't get any serial output. i thought i corrupted the firmware. so i tried the same SD card with my old Pi Model B one. i can get the output on the serial console in Pi Model B.
i am not sure what happen to my Pi 3 after the rpi-update.

btw, I tired the following suggestion from this post: so far no luck so far, if you guys see anything obvious thing i miss here, please let me know.

  1. force_turbo=1
  2. gpu_freq=300
  3. core_freq=300

Try enable_uart=1

lurch commented Apr 18, 2016

raspberrypi/firmware#553 (comment) has a bit more detail on how things work after an rpi-update.

@grigorig in terms of performance I expect to impact on ARM but probably some impact on the GPU side. I would be interested on this too if you are/were able to benchmark anything. @pelwell correct me if i'm wrong.

pelwell commented Apr 21, 2016

@agherzan Only the GPU core clock (which ironically doesn't really affect the graphics performance) is limited. It should have no impact on ARM performance except where it is waiting imperceptibly longer for the VPU to do something.

agherzan commented Apr 21, 2016

@pelwell so why don't we just set it to minimum by default on rpi3? Where is the downside?

pelwell commented Apr 21, 2016

Because certain operations - 60fps h264 decode, high quality deinterlace - which aren't performed on the ARM may be affected, and we wouldn't want to do that to users who don't want to use the serial port.

Clarified. Thanks @pelwell

I have a hard time trying to get boot messages over serial. Getty message are the first ones I get on serial after boot. Is the console initialized too late or am I missing something?

pelwell commented Apr 22, 2016

What do you have in cmdline.txt? It should contain (amongst other things) "console=serial0,115200" (or another baudrate of your choosing).

agherzan commented Apr 22, 2016

@pelwell Indeed. I have what I need for console and the proper loglevels:

# cat /proc/cmdline
8250.nr_uarts=1 dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2709.boardrev=0xa02082 bcm2709.serial=0xe2f028e5 smsc95xx.macaddr=B8:27:EB:F0:28:E5 bcm2708_fb.fbswap=1 bcm2709.uart_clock=48000000 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000  dwc_otg.lpm_enable=0 console=ttyS0 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait debug loglevel=7

# cat /boot/cmdline.txt 
dwc_otg.lpm_enable=0 console=ttyS0 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait debug loglevel=7

Ignore the debug/loglevel redundancy.

pelwell commented Apr 22, 2016

Have you tried adding an explicit baudrate? And I would recommend "serial0" instead of "ttyS0" - the firmware will rewrite it appropriately.

I've been trying all the combinations. serial0/ttyS0, enable_uart/cpu_freq and nothing seems to change anything.

Now, trying to explicitly set the baudrate did the trick. Any idea what's going on?

pelwell commented Apr 22, 2016

My guess would be that the default baudrate on ttyS0 is not 115200, but getty is probably explicitly selecting 115200. Note that the firmware is setting 115200, so the serial driver must be changing it.

Yes, the code confirms it - the ultimate fallback baudrate for the ttyS0 is 9600.

Understood. Can you point me to the code? Is this valid for any rpi version now? Cause this was not the case before.

One more tiny question. Is the current firmware (master HEAD) using the same replacement mechanism for kgdboc too as it does for console?

pelwell commented Apr 22, 2016

drivers/tty/serial/8250/8250_port.c

It is valid for any Pi with console=ttyS0 on the kernel command line, which is probably only Pi3s but has probably always been the case.

One more tiny question. Is the current firmware (master HEAD) using the same replacement mechanism for kgdboc too as it does for console?

Yes. It looks for '=serial0' and '=serial1' and replaces them appropriately.

What I meant is that on RPI2 this was not the case. Thank you @pelwell . Everything is clear now.

I see some references in this thread of setting core_freq in cmdline.txt . They must by typos and should be read config.txt , right?

pelwell commented Apr 22, 2016

core_freq is correct, but it should be set in config.txt as you say.

I thought there is some black magic happened lately. Back in normal state :) Thanks @pelwell

chaderick9 commented Apr 24, 2016

I ended up here from Adafruit.

I am not having success with the Raspberry Pi 3 getting the following product to work: https://www.adafruit.com/product/746

Following this tutorial: https://learn.adafruit.com/downloads/pdf/adafruit-ultimate-gps-on-the-raspberry-pi.pdf

Using UART instead of USB, installed latest version of Jessie light and full. Any suggestions?
I can get it to work fine on my RaspberryPi 1 running Wheezy over UART, no problem.

https://redd.it/4g8ngy

Edit
Solution: https://www.raspberrypi.org/forums/viewtopic.php?p=947968#p947968

Contributor

XECDesign commented Apr 25, 2016

@chaderick9 Try using ttyS0, instead of ttyAMA0 and make sure you set core_freq correctly or, if your firmware is recent enough, use enable_uart=1. If that doesn't work, it might be best to post the question on the forum, providing more information.

KBoonie commented Apr 28, 2016

I've finally found a thread that validates my theory (and pdf reading).
Just got my Pi3 and was writing some SPI code in Python.
This "quirk" also affects SPI clock speed. I was scratching my head wondering why the clock would occasionally double. I found other threads where hat providers were saying, "we'll get back to you" to frustrated customers. I haven't tried the I2C. Is it also subject to the governor changing gears?

Contributor

XECDesign commented May 20, 2016

Since the enable_uart option is in raspi-config, I think this issue can be closed.

@XECDesign XECDesign closed this May 20, 2016

jamesoxford08 commented Jun 15, 2016

I am a rpi noob so I might not understand the culture, so I apologize if I'm "speaking out of school" but reading this thread, and various other commentaries around the interwebs, its frustrating. Sometimes I scratch my head and wonder what developers are thinking. Like...

Because certain operations - 60fps h264 decode, high quality deinterlace

Why? why is gpu h264 decoding @ 60fps even necessary on a raspberry pi? You know what does it even better? Literally any other computer; and they all do it without sacrificing other systems. What do I need a full hdmi output for? It was honestly an inconvenience just to hook up to get the thing running for the first time.

I guess my point is, why try to make the thing compete with devices that are already designed to do things like stream HD media or display digital signage, and they are better equipped to do so in the first place. If I wanted a device that just did media I'd buy a Roku, or a NUC. You know how heavy a GUI is and what is likely sacrificed to include one? If I wanted a GUI I could just install ubuntu in a VM; and get better performance ...and a better looking GUI... or HDMI... or 4 full sized USB ports...put a USB header on the board and let people use it if they need it. I can understand the benefit of wlan and bluetooth, even though I personally will probably never use either. Its a bit like trying to turn a ferrari into a 4x4... or perhaps a smart into a race car is the better analogy.

My frustrations are coming out here but it seems to be kind of a prevailing trend; "lets make things do everything and be mediocre at all of them" instead of making something that is really good at a few things. You can't please everyone; but you can most definitely disappoint everyone trying.

Contributor

XECDesign commented Jun 15, 2016

@jamesoxford08, Closed github issues is definitely not the place to vent. I'd recommend going on the forum for that.

The main answer to your question consists of cost, power consumption and individual needs. You're basically asking "Why would anybody buy a bicycle when a ferrari is faster." Not everybody can afford or wants a ferrari and there's a whole other set of features that a bicycle provides that a ferrari doesn't.

Many of us use raspberry pis as home theatre pcs and aren't at all disappointed. When it comes to decoding, it's usually a matter of whether it's real time. If the raspberry pi does the job, why pay for something else? When I don't need it as a media centre, I can use it as a NAS (yes, it's fast enough for those of us who don't have fiber internet), if not that I can find another 100 uses for it. I don't need to buy 50 different devices for each different thing I might need to do.

I really don't understand the argument against having USB ports on it. Why should I need to buy additional hardware for basic functionality? This isn't Apple. It's cheaper to buy a board with USB ports which you'll definitely want to use (if you're the target market) than to provide a board for each feature.

If you have an infinite supply of money and don't care about how wisely you spend it. By all means, buy NUCs, a rack of servers, a NAS, a high end desktop to run all your VMs on, a home theatre box, a 4x4, a smart car and a ferrari. However, that's probably not practical or desirable for 99% of people.

lurch commented Jun 15, 2016

@jamesoxford08 In addition to what @XECDesign said... I believe there are vastly many more people who want full-speed GPU features, than who want to access the UART. That's probably why the decision was made to run the GPU at full-speed by default (and require a tweak to be made to access the UART), rather than running the GPU at a reduced speed so that the UART is usable by default (and require a tweak to run the GPU at full speed).

agherzan commented Jul 21, 2016

There seems to be another related issue that I just found out. If I have console=tty1 and then I want to start a getty process on ttyS0 (using enable_uart=1), there is no getty output on serial port. If I add console=ttyS0,115200, systemd uses a generator and the getty works correctly. I suspect that I miss an initialization step or so if the serial port is not mentioned as console. CC @popcornmix

Found the problem: baudrate which is by default 9600

lurch commented Jul 21, 2016

Might be worth having a look at what https://github.com/RPi-Distro/raspi-config does when you enable or disable the serial console.

But there is an issue here. If you remove console from cmdline, and start getty with 115200, boom!

Contributor

XECDesign commented Jul 24, 2016

@agherzan This is systemd's intended behaviour. It auto-generates the serial getty units from cmdline.

enable_uart=1 only enables the hardware and is not meant to do anything else.

I think raspi-config should additionally ask whether to start the getty or only enable the hardware, but that's a separate issue.

@my007ms my007ms referenced this issue in agherzan/meta-raspberrypi Aug 9, 2016

Closed

Enable bluetooth in Pi3 #26

I do agree that it is another issue but there is one.

CJ-01 commented Sep 16, 2016

I use the change by adding core_freq=250 for my Pi 3.
I also set the max defaults at startup in config.txt (I rather not try to force Pi3 to over clock for fear of burning it out)
force_turbo=1 #Voids Warranty!
boot_delay=1 #helps to avoid sdcard corruption when force_turbo is enabled

I did notice the Pi 3 boots a lot faster. Not sure which change caused it.
Anyway due to the volatile nature of SD cards I decided to create images for my Pi'S.
I have like four Pi3's and five pi zeros.
I have created images and backed them up so I would not have to go thru the whole install of OS and install the additional packages and changes etc.
So far I have and Image for a straight Raspbian (so far the only OS I'm using-may change as I do more projects).
Then I have an Image for the Pi3 setup as an Access Point (Router)
Then I have an Image for the Pi3 setup as an Access Point as a TOR Access Point
Basically I'll have images for all my projects so I can simply copy them to a new SD card.

Ok, enough foreplay. My question is will I also have different images for my Pi Zeros as I go forward.
I realize that my Image for a straight Raspbian will work with the Pi Zero. But in all my images (so far) for the Pi 3, including the Image for a straight Raspbian I've made the changes for the UART issue and the changes for setting the max defaults at boot up.
Since the Pi Zero does not have Blue tooth will the core_freq = 250 change cause issues?
I'm assuming the max defaults change will be ok on any Pi version.
And if there are issues can I do some checking in the files like an If then else ?
example:
If the device is a Pi 3
Then core_freq=250
End If

I'm not sure of the variable to check to see what pi model I'm using but I need to know is this a possibility and/or will the changes added cause issues between the Pi 3 or Pi Zero.

Any help is appreciated!

pelwell commented Sep 16, 2016

The reason for the introduction of enable_uart is to get around the problem you have discovered. enable_uart=1 includes an implicit "if we are using ttyS0 as the main serial port then cpu_freq=250", which in most cases is equivalent to "if the device is a Pi3 then core_freq=250".

If, however, ttyAMA0 is the main serial port (i.e. if this isn't a Pi3 or if it a Pi3 with the pi3-disable-bt or pi3-miniuart-bt overlay loaded) then enable_uart=1 has no effect on core_freq. In fact, it has no effect at all because the default value of enable_uart is 1 if ttyAMA0 is the main serial port.

lurch commented Sep 16, 2016

And to answer the second part of your question: Yes, you can use conditional blocks in config.txt if you want to apply different settings to different Pis. See the bottom of https://www.raspberrypi.org/documentation/configuration/config-txt.md

pelwell commented Sep 16, 2016

Yes, but you don't need to for this issue. In order to get a stable console serial port on any Pi, just add enable_uart=1 to config.txt; don't use force_turbo=1 or core_freq=250 - they aren't required.

neuschaefer pushed a commit to neuschaefer/raspi-binary-firmware that referenced this issue Feb 27, 2017

firmware: arm_loader: Improve serial port aliasing
See: RPi-Distro/repo#22

firmware: Pi3: Reduce desired ring osc and attempt to make temperature reading more accurate

@diederikdehaas diederikdehaas referenced this issue in debian-pi/raspbian-ua-netinst Jul 19, 2017

Merged

Rpi3 support #418

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment