9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] No signal on some monitors with Raspberry Pi 400
@ 2021-03-10 16:24 Kent R. Spillner
  2021-03-10 16:53 ` Richard Miller
  0 siblings, 1 reply; 4+ messages in thread
From: Kent R. Spillner @ 2021-03-10 16:24 UTC (permalink / raw)
  To: 9fans

Howdy-

I recently bought a Raspberry Pi 400 and installed Richard Miller's 9pi img
(https://9p.io/sources/contrib/miller/9pi.img.gz) onto a microSD card via
Raspberry Pi's Imaging tool.

Everything works fine and I'm really enjoying learning Plan 9, however some monitors
don't detect any signal.  That is, if I plug into a ~10 year old Vizio television
everything works fine at a reasonable resolution (1280x1024?  I haven't yet figured
out which utility to use to query display properties), but if I plug it into a Dell
S2817Q the monitor says "No signal detected."  I've successfully plugged the Pi back
and forth between the two displays several times and the behavior is consistent:
everything works fine on the smaller, older Vizio tv, but "no signal" on the Dell.

Has anyone else experienced anything like this?  Any suggestions for things to try?

I would prefer using the Dell monitor to the Vizio tv, but I'm not concerned about
the resolution.  That is, I would happily prefer running Plan 9 on the Pi at 640x480
on the Dell rather than the higher resolution on the Vizio.  (Ideally, of course, I
would like to run at the highest resolution possible on the Dell, but for the time
being I'd just be happy with anything working on the Dell)

Thank you in advance!



------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T295835c4cafb6d4f-Mb8abec25c192665db0434e0f
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] No signal on some monitors with Raspberry Pi 400
  2021-03-10 16:24 [9fans] No signal on some monitors with Raspberry Pi 400 Kent R. Spillner
@ 2021-03-10 16:53 ` Richard Miller
  2021-03-10 17:38   ` Bakul Shah
  0 siblings, 1 reply; 4+ messages in thread
From: Richard Miller @ 2021-03-10 16:53 UTC (permalink / raw)
  To: 9fans

> That is, if I plug into a ~10 year old Vizio television
> everything works fine at a reasonable resolution (1280x1024?  I haven't yet figured
> out which utility to use to query display properties)

Here's a simple way:

term% echo `{dd -if /dev/screen -bs 64 -count 1}

> , but if I plug it into a Dell
> S2817Q the monitor says "No signal detected."

That's a 4k monitor, I think. The native resolution is probably too big
to fit in the virtual area allowed for the kernel frame buffer. (Lack of
foresight - monitors were smaller when 9pi was first done.)

I'll see about fixing that soon. Meanwhile, you should be able to use
hdmi_group and hdmi_mode settings in config.txt to request a lower resolution.
Or add something like "vgasize=1600x1200x16" to the command line in cmdline.txt -
either method should work.


------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T295835c4cafb6d4f-Md4f814e7c44f86d9f584b403
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] No signal on some monitors with Raspberry Pi 400
  2021-03-10 16:53 ` Richard Miller
@ 2021-03-10 17:38   ` Bakul Shah
  2021-03-10 18:48     ` hiro
  0 siblings, 1 reply; 4+ messages in thread
From: Bakul Shah @ 2021-03-10 17:38 UTC (permalink / raw)
  To: 9fans

On Mar 10, 2021, at 8:53 AM, Richard Miller <9fans@hamnavoe.com> wrote:
>> That is, if I plug into a ~10 year old Vizio television
>> everything works fine at a reasonable resolution (1280x1024?  I haven't yet figured
>> out which utility to use to query display properties)
> 
> Here's a simple way:
> 
> term% echo `{dd -if /dev/screen -bs 64 -count 1}
> 
>> , but if I plug it into a Dell
>> S2817Q the monitor says "No signal detected."
> 
> That's a 4k monitor, I think. The native resolution is probably too big
> to fit in the virtual area allowed for the kernel frame buffer. (Lack of
> foresight - monitors were smaller when 9pi was first done.)
> 
> I'll see about fixing that soon. Meanwhile, you should be able to use
> hdmi_group and hdmi_mode settings in config.txt to request a lower resolution.
> Or add something like "vgasize=1600x1200x16" to the command line in cmdline.txt -
> either method should work.

Not sure how things are different in pi4+pi9 but I was able to get 4K@20Hz
under plan9 back in 2014 on the original pi. Not sure I can find that
SDcard now but the settings were based on what I gleaned from this thread: 
https://www.raspberrypi.org/forums/viewtopic.php?t=79330
------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T295835c4cafb6d4f-M855b50cfb52355dd9a906ae2
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] No signal on some monitors with Raspberry Pi 400
  2021-03-10 17:38   ` Bakul Shah
@ 2021-03-10 18:48     ` hiro
  0 siblings, 0 replies; 4+ messages in thread
From: hiro @ 2021-03-10 18:48 UTC (permalink / raw)
  To: 9fans

i even get 4k@60hz here on a rpi4 on 9front, but there was a lot of
interference with bluetooth, wifi and usb3, it might be you need an
extra strong signal, did you try with a short cable that has a high
bandwidth?

On 3/10/21, Bakul Shah <bakul@iitbombay.org> wrote:
> On Mar 10, 2021, at 8:53 AM, Richard Miller <9fans@hamnavoe.com> wrote:
>>> That is, if I plug into a ~10 year old Vizio television
>>> everything works fine at a reasonable resolution (1280x1024?  I haven't
>>> yet figured
>>> out which utility to use to query display properties)
>>
>> Here's a simple way:
>>
>> term% echo `{dd -if /dev/screen -bs 64 -count 1}
>>
>>> , but if I plug it into a Dell
>>> S2817Q the monitor says "No signal detected."
>>
>> That's a 4k monitor, I think. The native resolution is probably too big
>> to fit in the virtual area allowed for the kernel frame buffer. (Lack of
>> foresight - monitors were smaller when 9pi was first done.)
>>
>> I'll see about fixing that soon. Meanwhile, you should be able to use
>> hdmi_group and hdmi_mode settings in config.txt to request a lower
>> resolution.
>> Or add something like "vgasize=1600x1200x16" to the command line in
>> cmdline.txt -
>> either method should work.
> 
> Not sure how things are different in pi4+pi9 but I was able to get 4K@20Hz
> under plan9 back in 2014 on the original pi. Not sure I can find that
> SDcard now but the settings were based on what I gleaned from this thread:
> https://www.raspberrypi.org/forums/viewtopic.php?t=79330

------------------------------------------
9fans: 9fans
Permalink: https://9fans.topicbox.com/groups/9fans/T295835c4cafb6d4f-M5444f7c46a5f07d392c4a08c
Delivery options: https://9fans.topicbox.com/groups/9fans/subscription

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-10 18:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-10 16:24 [9fans] No signal on some monitors with Raspberry Pi 400 Kent R. Spillner
2021-03-10 16:53 ` Richard Miller
2021-03-10 17:38   ` Bakul Shah
2021-03-10 18:48     ` hiro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).