Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. Let's make a Pi Pico 2 powered video card.

Let's make a Pi Pico 2 powered video card.

Scheduled Pinned Locked Moved Uncategorized
retrocomputing
144 Posts 30 Posters 0 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • petrillic@hachyderm.ioP petrillic@hachyderm.io

    @gloriouscow can you just use a PIO for that?

    gloriouscow@oldbytes.spaceG This user is from outside of this forum
    gloriouscow@oldbytes.spaceG This user is from outside of this forum
    gloriouscow@oldbytes.space
    wrote last edited by
    #17

    @petrillic That's the plan, overclock to 315MHz, then just have a PIO running to twiddle a GPIO every 11 cycles.

    1 Reply Last reply
    0
    • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

      @AnachronistJohn Isn't that what stuff like iDRAC does?

      anachronistjohn@zia.ioA This user is from outside of this forum
      anachronistjohn@zia.ioA This user is from outside of this forum
      anachronistjohn@zia.io
      wrote last edited by
      #18
      @gloriouscow Sorta, but iDRAC / iLo / IPMI are proprietary (there are some attempts to make an open replacement for the software), insecure, expensive and require an additional machine / network to access it. This would likely also require an additional machine, but it’d be so much more flexible.

      Plus, it’d be cool as hell to output / capture composite video or CGA line doubled to VGA.
      1 Reply Last reply
      0
      • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

        I own a lot of ISA cards and I took measurements from several video cards, and there's no real standard - things vary a lot. You'll notice on this particular layout, the board edge dips down to give the most usable real estate after the end of the 8-bit ISA edge connector.

        Unfortunately this means you can't plug an an original IBM CGA into your AT. We'll probably want to avoid that limitation. With a Pico replacing most of the logic on the board I don't really think we're going to need a full-length card in the first place.

        gloriouscow@oldbytes.spaceG This user is from outside of this forum
        gloriouscow@oldbytes.spaceG This user is from outside of this forum
        gloriouscow@oldbytes.space
        wrote last edited by
        #19

        On GlyphBlaster currently, I fight a lot with bus contention between the two ARM cores. Embassy, the USB-CDC connection and the network stack live on Core 0, whereas GlyphBlaster's video routines run on Core 1, so you might assume they could run independently.

        gloriouscow@oldbytes.spaceG 1 Reply Last reply
        0
        • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

          On GlyphBlaster currently, I fight a lot with bus contention between the two ARM cores. Embassy, the USB-CDC connection and the network stack live on Core 0, whereas GlyphBlaster's video routines run on Core 1, so you might assume they could run independently.

          gloriouscow@oldbytes.spaceG This user is from outside of this forum
          gloriouscow@oldbytes.spaceG This user is from outside of this forum
          gloriouscow@oldbytes.space
          wrote last edited by
          #20

          But they still contend for the same flash - if I add some intensive video effect, I can starve Core 0 and it will stop responding to network requests or my USB debugging session.

          The solution is to tag routines on Core 1 with #[unsafe(link_section = ".data.ram_func")] to force it to run out of RAM instead of flash, but this compounds my already dire RAM situation.

          gloriouscow@oldbytes.spaceG 1 Reply Last reply
          0
          • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

            But they still contend for the same flash - if I add some intensive video effect, I can starve Core 0 and it will stop responding to network requests or my USB debugging session.

            The solution is to tag routines on Core 1 with #[unsafe(link_section = ".data.ram_func")] to force it to run out of RAM instead of flash, but this compounds my already dire RAM situation.

            gloriouscow@oldbytes.spaceG This user is from outside of this forum
            gloriouscow@oldbytes.spaceG This user is from outside of this forum
            gloriouscow@oldbytes.space
            wrote last edited by
            #21

            With a full board though, we could have a separate microcontroller that just handles the Wi-Fi. Maybe another RP2350? Maybe an ESP32? STM32 lol? I don't know. Worry about that later.

            gloriouscow@oldbytes.spaceG polpo@chaos.socialP 2 Replies Last reply
            0
            • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

              With a full board though, we could have a separate microcontroller that just handles the Wi-Fi. Maybe another RP2350? Maybe an ESP32? STM32 lol? I don't know. Worry about that later.

              gloriouscow@oldbytes.spaceG This user is from outside of this forum
              gloriouscow@oldbytes.spaceG This user is from outside of this forum
              gloriouscow@oldbytes.space
              wrote last edited by
              #22

              We'll definitely be using an RP2350B directly instead of soldering on a Pico 2 board. But I guess it's okay to still call this a Pico.

              We basically double the number of available GPIO pins, meaning I no longer have to make compromises. Light pen? Sure. Capture every address line? You betcha. QSPI PSRAM? All day long.

              Raspberry Pi is nice enough to provide a reference KiCad project, so you can more or less copy and paste a RP2350 into your project.

              Link Preview Image
              kroc@oldbytes.spaceK gloriouscow@oldbytes.spaceG 2 Replies Last reply
              0
              • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                To simulate the OSC pin, I will program another Pico to just generate a 14.3181818 clock.

                "What's my purpose?"

                "You generate a clock."

                jennyfluff@chitter.xyzJ This user is from outside of this forum
                jennyfluff@chitter.xyzJ This user is from outside of this forum
                jennyfluff@chitter.xyz
                wrote last edited by
                #23

                @gloriouscow glad we're not at the state of vibe hardware yet where we need to convince it to actually do that

                1 Reply Last reply
                0
                • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                  We'll definitely be using an RP2350B directly instead of soldering on a Pico 2 board. But I guess it's okay to still call this a Pico.

                  We basically double the number of available GPIO pins, meaning I no longer have to make compromises. Light pen? Sure. Capture every address line? You betcha. QSPI PSRAM? All day long.

                  Raspberry Pi is nice enough to provide a reference KiCad project, so you can more or less copy and paste a RP2350 into your project.

                  Link Preview Image
                  kroc@oldbytes.spaceK This user is from outside of this forum
                  kroc@oldbytes.spaceK This user is from outside of this forum
                  kroc@oldbytes.space
                  wrote last edited by
                  #24

                  @gloriouscow If you're making a whole ISA card, then you're overlapping with #PicoMEM, #PicoGUS, and #PicoIDE which could be a good place to steal from / ask about!

                  gloriouscow@oldbytes.spaceG 1 Reply Last reply
                  0
                  • kroc@oldbytes.spaceK kroc@oldbytes.space

                    @gloriouscow If you're making a whole ISA card, then you're overlapping with #PicoMEM, #PicoGUS, and #PicoIDE which could be a good place to steal from / ask about!

                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                    gloriouscow@oldbytes.space
                    wrote last edited by
                    #25

                    @Kroc Oh, believe me, I know all those guys (hi @polpo) and they've been a huge help already in making GlyphBlaster so far.

                    kroc@oldbytes.spaceK polpo@chaos.socialP 2 Replies Last reply
                    0
                    • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                      We'll definitely be using an RP2350B directly instead of soldering on a Pico 2 board. But I guess it's okay to still call this a Pico.

                      We basically double the number of available GPIO pins, meaning I no longer have to make compromises. Light pen? Sure. Capture every address line? You betcha. QSPI PSRAM? All day long.

                      Raspberry Pi is nice enough to provide a reference KiCad project, so you can more or less copy and paste a RP2350 into your project.

                      Link Preview Image
                      gloriouscow@oldbytes.spaceG This user is from outside of this forum
                      gloriouscow@oldbytes.spaceG This user is from outside of this forum
                      gloriouscow@oldbytes.space
                      wrote last edited by
                      #26

                      Okay, first priority - let's make our Pico OSC pin simulator.

                      Raspberry Pi has a very nice Pico development plugin for Visual Studio Code. We just choose "New Rust Project," name it, and click create.

                      Link Preview Image
                      gloriouscow@oldbytes.spaceG 1 Reply Last reply
                      0
                      • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                        Okay, first priority - let's make our Pico OSC pin simulator.

                        Raspberry Pi has a very nice Pico development plugin for Visual Studio Code. We just choose "New Rust Project," name it, and click create.

                        Link Preview Image
                        gloriouscow@oldbytes.spaceG This user is from outside of this forum
                        gloriouscow@oldbytes.spaceG This user is from outside of this forum
                        gloriouscow@oldbytes.space
                        wrote last edited by
                        #27

                        This gives you an rp-hal project, and GlyphBlaster is currently written against Embassy, and I don't really feel like rewriting all the overclocking code, so I'm just going to switch this to Embassy too and copy-paste that stuff.

                        I would like to thank FreddyV of PicoMEM for giving me the tips on how to stably overclock a Pico. It requires tweaking the on-board flash timings in a way I never would have figured out for myself.

                        The key do doing this in Embassy is this bit:


                        const PICO_SYS_CLOCK_HZ: u32 = 300_000_000;
                        const FLASH_QMI_TIMING_UPDATE_THRESHOLD_HZ: u32 = 280_000_000;
                        const FLASH_QMI_TIMING_HIGH_SPEED_HZ: u32 = 380_000_000;
                        const OVERCLOCK_FLASH_QMI_CLKDIV: u8 = if PICO_SYS_CLOCK_HZ > FLASH_QMI_TIMING_HIGH_SPEED_HZ {
                        4
                        } else {
                        3
                        };
                        const OVERCLOCK_FLASH_QMI_RXDELAY: u8 = if PICO_SYS_CLOCK_HZ > FLASH_QMI_TIMING_HIGH_SPEED_HZ {
                        4
                        } else {
                        3
                        };

                        //...

                        let timing = embassy_rp::pac::QMI.mem(0).timing();
                        timing.modify(|w| {
                        w.set_clkdiv(OVERCLOCK_FLASH_QMI_CLKDIV);
                        w.set_rxdelay(OVERCLOCK_FLASH_QMI_RXDELAY);
                        });
                        gloriouscow@oldbytes.spaceG 1 Reply Last reply
                        0
                        • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                          @Kroc Oh, believe me, I know all those guys (hi @polpo) and they've been a huge help already in making GlyphBlaster so far.

                          kroc@oldbytes.spaceK This user is from outside of this forum
                          kroc@oldbytes.spaceK This user is from outside of this forum
                          kroc@oldbytes.space
                          wrote last edited by
                          #28

                          @gloriouscow With your graphics card, all that's needed is an Pico 8086 emulator and you've got an "Oops, all Pico!" IBM PC 😛

                          gloriouscow@oldbytes.spaceG 1 Reply Last reply
                          0
                          • kroc@oldbytes.spaceK kroc@oldbytes.space

                            @gloriouscow With your graphics card, all that's needed is an Pico 8086 emulator and you've got an "Oops, all Pico!" IBM PC 😛

                            gloriouscow@oldbytes.spaceG This user is from outside of this forum
                            gloriouscow@oldbytes.spaceG This user is from outside of this forum
                            gloriouscow@oldbytes.space
                            wrote last edited by
                            #29

                            @Kroc Don't give me more ideas

                            gloriouscow@oldbytes.spaceG 1 Reply Last reply
                            0
                            • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                              @Kroc Don't give me more ideas

                              gloriouscow@oldbytes.spaceG This user is from outside of this forum
                              gloriouscow@oldbytes.spaceG This user is from outside of this forum
                              gloriouscow@oldbytes.space
                              wrote last edited by
                              #30

                              @Kroc There's already a Teensy 8088 emulator so i'm sure its possible

                              1 Reply Last reply
                              0
                              • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                                This gives you an rp-hal project, and GlyphBlaster is currently written against Embassy, and I don't really feel like rewriting all the overclocking code, so I'm just going to switch this to Embassy too and copy-paste that stuff.

                                I would like to thank FreddyV of PicoMEM for giving me the tips on how to stably overclock a Pico. It requires tweaking the on-board flash timings in a way I never would have figured out for myself.

                                The key do doing this in Embassy is this bit:


                                const PICO_SYS_CLOCK_HZ: u32 = 300_000_000;
                                const FLASH_QMI_TIMING_UPDATE_THRESHOLD_HZ: u32 = 280_000_000;
                                const FLASH_QMI_TIMING_HIGH_SPEED_HZ: u32 = 380_000_000;
                                const OVERCLOCK_FLASH_QMI_CLKDIV: u8 = if PICO_SYS_CLOCK_HZ > FLASH_QMI_TIMING_HIGH_SPEED_HZ {
                                4
                                } else {
                                3
                                };
                                const OVERCLOCK_FLASH_QMI_RXDELAY: u8 = if PICO_SYS_CLOCK_HZ > FLASH_QMI_TIMING_HIGH_SPEED_HZ {
                                4
                                } else {
                                3
                                };

                                //...

                                let timing = embassy_rp::pac::QMI.mem(0).timing();
                                timing.modify(|w| {
                                w.set_clkdiv(OVERCLOCK_FLASH_QMI_CLKDIV);
                                w.set_rxdelay(OVERCLOCK_FLASH_QMI_RXDELAY);
                                });
                                gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                gloriouscow@oldbytes.space
                                wrote last edited by
                                #31

                                I'll use GPIO16 for this which conveniently puts it on the top right corner of the Pico 2 board.

                                Our PIO program is stupid simple:

                                    let clock_program = pio_asm!(
                                ".wrap_target",
                                "set pins, 1 [10]",
                                "set pins, 0 [10]",
                                ".wrap"
                                );

                                .wrap_target is just a standard label for the PIO loop, which will be restarted at the end with .wrap. The value in brackets is how many cycles to spin - the set itself takes one cycle, then we spin for 10 after. This should give us the 11 cycles on, 11 cycles off behavior we want.

                                'pins' here just targets GPIO16, via this:

                                let clock_pin = pio1.common.make_pio_pin(p.PIN_16);
                                clock_sm_config.set_set_pins(&[&clock_pin]);
                                gloriouscow@oldbytes.spaceG ldcd@social.treehouse.systemsL 2 Replies Last reply
                                0
                                • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                                  I'll use GPIO16 for this which conveniently puts it on the top right corner of the Pico 2 board.

                                  Our PIO program is stupid simple:

                                      let clock_program = pio_asm!(
                                  ".wrap_target",
                                  "set pins, 1 [10]",
                                  "set pins, 0 [10]",
                                  ".wrap"
                                  );

                                  .wrap_target is just a standard label for the PIO loop, which will be restarted at the end with .wrap. The value in brackets is how many cycles to spin - the set itself takes one cycle, then we spin for 10 after. This should give us the 11 cycles on, 11 cycles off behavior we want.

                                  'pins' here just targets GPIO16, via this:

                                  let clock_pin = pio1.common.make_pio_pin(p.PIN_16);
                                  clock_sm_config.set_set_pins(&[&clock_pin]);
                                  gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                  gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                  gloriouscow@oldbytes.space
                                  wrote last edited by
                                  #32

                                  PIO is the secret sauce that makes Picos so good at interfacing with retro hardware. They allow you to react to pin changes instantly, and read and write busses, doing the sort of high speed bus interactions that were normally the exclusive purview of FPGAs.

                                  gloriouscow@oldbytes.spaceG 1 Reply Last reply
                                  0
                                  • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                                    PIO is the secret sauce that makes Picos so good at interfacing with retro hardware. They allow you to react to pin changes instantly, and read and write busses, doing the sort of high speed bus interactions that were normally the exclusive purview of FPGAs.

                                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                    gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                    gloriouscow@oldbytes.space
                                    wrote last edited by
                                    #33

                                    All in all, not too shabby for a $5 board. Let's see how our clock looks, right after I unbag this and hook it up.

                                    Link Preview Image
                                    gloriouscow@oldbytes.spaceG 1 Reply Last reply
                                    0
                                    • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                                      All in all, not too shabby for a $5 board. Let's see how our clock looks, right after I unbag this and hook it up.

                                      Link Preview Image
                                      gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                      gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                      gloriouscow@oldbytes.space
                                      wrote last edited by
                                      #34

                                      14.318MHz, baby.

                                      Believe it or not, a sawtooth clock isn't that hideous. This is pretty much what the OSC pin looks like for realsies.

                                      Link Preview Image
                                      casandro@f-ckendehoelle.deC gloriouscow@oldbytes.spaceG 2 Replies Last reply
                                      0
                                      • gloriouscow@oldbytes.spaceG gloriouscow@oldbytes.space

                                        14.318MHz, baby.

                                        Believe it or not, a sawtooth clock isn't that hideous. This is pretty much what the OSC pin looks like for realsies.

                                        Link Preview Image
                                        casandro@f-ckendehoelle.deC This user is from outside of this forum
                                        casandro@f-ckendehoelle.deC This user is from outside of this forum
                                        casandro@f-ckendehoelle.de
                                        wrote last edited by
                                        #35

                                        @gloriouscow Could that be a probe issue? Not all probes go up that high in frequency.

                                        gloriouscow@oldbytes.spaceG 1 Reply Last reply
                                        0
                                        • casandro@f-ckendehoelle.deC casandro@f-ckendehoelle.de

                                          @gloriouscow Could that be a probe issue? Not all probes go up that high in frequency.

                                          gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                          gloriouscow@oldbytes.spaceG This user is from outside of this forum
                                          gloriouscow@oldbytes.space
                                          wrote last edited by
                                          #36

                                          @casandro Nah, I've gotten a clean read from a 66MHz crystal on this probe from a 386 motherboard. This is probably a limitation of the Pico's GPIO drive strength. I'm not sure if that's something you can configure on a Pico, you can on an STM32, although I usually don't as it can produce overshoots which ends up being worse to deal with.

                                          gloriouscow@oldbytes.spaceG 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups