zmk/docs/docs/development/hardware-integration/shift-registers.md
2024-09-01 17:52:39 +02:00

7.3 KiB

title sidebar_label
Configuring Shift Registers Shift Registers

Shift registers are the recommended method of adding additional GPIO pins to MCUs and boards, when a standard matrix results in an insufficient number of keys. They are recommended because they simultaneously have very low power consumption and are quite cheap. This page serves as a (brief) introduction to shift registers, how to use them in your design, and how to configure ZMK to use them correctly.

:::note This page assumes that the part you are using has the code 74HC595. Other shift registers can work as well, but this is the most commonly used one. :::

:::tip To understand how shift registers work, we recommend reading through "How does the 74HC595 Shift Register work?". :::

Design Guidelines

The shift register output pins should be connected to the output pins of a keyboard matrix, while the input pins should be connected directly to the MCU/board. This is to allow the input pins to trigger "interrupts" on the MCU/board, upon which it will begin scanning the keys. Using a shift register for input pins is also possible, but requires you to use a different part and will harm your battery life.

Identifying the output pins of your keyboard matrix is easy - these are the pins connected to the anodes of your diodes. You most likely will need to rearrange your matrix to have significantly more inputs than outputs.

You will want to make sure that the data and clock pins of the shift register are connected to high frequency/SPI-capable pins on your MCU. Make sure that these lie on the same SPI bus for your microcontroller, if applicable (rp2040 yes, nRF52840 no). It is generally recommended that you use the pre-defined pins for SPI, if your board comes with them.

For daisy chaining purposes, ZMK allows you to chain a maximum of four shift registers together.

Configuration

In ZMK, the SPI bus of your MCU is used to communicate with shift registers, without using MISO. Thus you will first need to ensure that your board has SPI configured accordingly. Some boards, such as Seeed Studio's Xiao series, already has particular pins defined and configured for SPI (these can be changed if the MCU allows for alternative selections of SPI pins). Others, such as the nice!nano or any custom board, will need to be configured by you manually. Shift registers can share the SPI bus with other devices with no issues.

Configuring the SPI bus

Configuring the pins directly varys depending on your architecture. Presented are methods for overwriting the default SPI bus definitions for boards running the nRF52840. Alternative MCUs will be similar; refer to theZephyr documentation for these. Also refer to said documentation if you are defining a new bus rather than overwriting an existing one.

This section can be skipped if you are using the default pins for SPI of a board, e.g. for the Seeed Studio Xiao the pin D8 for the clock signal and D10 for the data signal. However, if you are not making use of the MISO pin and wish to use said pin for alternative purposes, you will need to override the definition.

First, identify the high frequency pins that you are using for SPI by their port and pin number. This example will assume that:

  • Your SPI clock pin is port 1, pin 11
  • Your SPI MOSI pin is port 1, pin 12

Next, you'll need to identify the node label of the SPI bus you're overwriting. Look through your board's devicetree files, following the includes, for a node with compatible = "nordic,nrf-spi";. This node should have some properties marked as pinctrl-X, where X is a number. For example, you might find

&spi2 {
    compatible = "nordic,nrf-spi";
    pinctrl-0 = <&spi2_default>;
    pinctrl-1 = <&spi2_sleep>;
    pinctrl-names = "default", "sleep";
};

You will need to overwrite the pinctrl nodes to use your desired pins. Look through the devicetree files once again, this time looking for spi2_default and spi2_sleep (or the equivalently named nodes for your board). You should find something like this:

spi2_default: spi2_default {
    group1 {
        psels = <NRF_PSEL(SPIM_SCK, 1, 13)>,
            <NRF_PSEL(SPIM_MOSI, 1, 15)>,
            <NRF_PSEL(SPIM_MISO, 1, 14)>;
    };
};

spi2_sleep: spi2_sleep {
    group1 {
        psels = <NRF_PSEL(SPIM_SCK, 1, 13)>,
            <NRF_PSEL(SPIM_MOSI, 1, 15)>,
            <NRF_PSEL(SPIM_MISO, 1, 14)>;
        low-power-enable;
    };
};

Overwrite the pin definitions like so:

&spi2_default {
    group1 {
        psels = <NRF_PSEL(SPIM_SCK, 1, 11)>,
            <NRF_PSEL(SPIM_MOSI, 1, 12)>;
    };
};

&spi2_sleep {
    group1 {
        psels = <NRF_PSEL(SPIM_SCK, 1, 11)>,
            <NRF_PSEL(SPIM_MOSI, 1, 12)>;
    };
};

Note that for convenience, ZMK gives the spi2 node of the Seeed Studio XIAO series the name xiao_spi.

:::tip If you are making a shield, rather than editing the board's files directly, add a <your shield folder>/boards/<your board>.overlay file. This will then be included in your board's definition when you build your shield. :::

Enable SPI

Add the following line to your board's configuration files:

CONFIG_SPI=y

If you're editing your board's files directly, you should alternatively enable it like so:

CONFIG_SPI=y

Shift Register SPI Device

To add your shift register as a SPI device, you'll need to overwrite your board's SPI configuration. For example, if your SPI bus has the node label xiao_spi, then you would add the following to your <your shield>.overlay:

&xiao_spi {
    status = "okay";
    cs-gpios = <&xiao_d 9 GPIO_ACTIVE_LOW>;
    shifter: 595@0 {
        compatible = "zmk,gpio-595";
        status = "okay";
        gpio-controller;
        spi-max-frequency = <200000>;
        reg = <0>;
        #gpio-cells = <2>;
        ngpios = <8>;
    };
};

If there is more than one device on the SPI bus, you will need to add additional pins to the cs-gpios phandle array - one for each device. The @0 number marks the index of the cs-gpios pin used to control a device. If you have daisy chained multiple shift registers, you'll also want to increase the number of GPIOs that the shift register provides by editing the ngpios node - set this to your number of output pins (should be one of 8, 16, 24, 32).

Using Shift Register Pins In Kscan

Once all of this is set up, you can refer to pins from the shift register using &shifterX, where X is the pin number. Use this to define your kscan, for example:

kscan0: kscan_0 {
    compatible = "zmk,kscan-gpio-matrix";
    diode-direction = "col2row";
    col-gpios
        = <&shifter 7 GPIO_ACTIVE_HIGH>
        , <&shifter 6 GPIO_ACTIVE_HIGH>
        , <&shifter 5 GPIO_ACTIVE_HIGH>
        , <&shifter 4 GPIO_ACTIVE_HIGH>
        , <&shifter 3 GPIO_ACTIVE_HIGH>
        , <&shifter 2 GPIO_ACTIVE_HIGH>
    ;
};