Enable I2C, I2s, SPI in boot-config file?
#1
Hi, 

I wonder if someone can help me with this one: in the past I used a Raspberry Pi to run via the GPIOs a stepper motor. That required updating of the /boot/config.txt file (on the RPi) as follows:

Enable i2c, i2s and spi (only if not already enabled)

$ echo "dtparam=i2c_arm=on" >> /boot/config.txt

$ echo "dtparam=i2s=on" >> /boot/config.txt

$ echo "dtparam=spi=on" >> /boot/config.txt

$ echo "dtoverlay=pps-gpio,gpiopin=24" >> /boot/config.txt

I have not found in the boot directory of the Rock64 anything similar, and do not know whether required.

In this Forum I came across this thread on 

https://forum.pine64.org/showthread.php?tid=5331 which refers to a package RPi.GPIO-PineA64 package to configure the GPIOs. Is this something I should do to enable I2C, I2s and SPI?

Would really appreciate your help.

Thanks in advance, 

Helge
#2
Helge, I have a similar problem. Have you figured out what you were hoping to achieve?
#3
It seems that the way things are, the devices are not enablet right away. However, they can be enabled via "dts overlays", essentially additional changes to the internal "device tree" structure.

See https://github.com/ayufan-rock64/linux-b...al-devices

There is an example there of enabling a network interface. I found that I could enable the i2c-0 bus (the one on pins P3 and P5) by the following command, run as root:

enable_dtoverlay i2c0 i2c@ff150000 okay

where the names such as "i2c@ff150000" are found in the device-tree-source file on the github repository:

https://github.com/ayufan-rock64/linux-k...k3328.dtsi

Now, note that a number of GPIOs are already in use for various other purposes (the SPI for exampe is used for an on-board memory chip) and might not be readily available.

To have this happen on startup, put it into /etc/rc.local
#4
Hi,

starting with the info given in the post KnReLe, i write a little app in C++ that uses i2c0 bus. This works but requires the app to be executed as root. As i'm not a linux expert, i were looking for a solution and find the following so that this i2c bus could be used all the time outside root:

  1. create a user group (for instance i2cuser) and add rock64 (my user account) to the group 
       $sudo addgroup i2cuser   $sudo usermod -a -G i2cuser rock64
  2. create a script /usr/local/sbin/i2c0add.sh :
    Code:
    #!/bin/bash
    #script to add i2c-0 to the devices
    echo Create /dev/i2c-0
    enable_dtoverlay i2c0 i2c@ff150000 okay
    #change owner:group of /dev/i2c-0
    chown root:i2cuser /dev/i2c-0


  3. create a systemd service file /etc/systemd/system/i2c0add.service :
    Code:
    [Unit]
    Description=Service to create i2c0 device
    After=sockets.target

    [Service]
    Type=oneshot
    RemainAfterExit=no
    ExecStart=/usr/local/sbin/i2c0add.sh

    [Install]
    WantedBy=multi-user.target


  4. enable the execution of the service at startup:
      $sudo systemctl enable /etc/systemd/system/i2c0add.service
I hope that i did not forget something. I not sure that this is the best solution but this works.
In addition, linux version is 18.04 LTS (Bionic Beaver)
I am also looking for a solution for using the gpio lines as non root, but until now without success. 
If someone has a solution....



Regards


Possibly Related Threads…
Thread Author Replies Views Last Post
  Rock64 won't boot luminosity7 10 3,872 03-16-2024, 08:33 AM
Last Post: dmitrymyadzelets
  Rock64 doesn't boot dstallmo 1 258 03-16-2024, 08:29 AM
Last Post: dmitrymyadzelets
  Boot from SPI first mjnck 1 1,454 02-29-2024, 02:12 PM
Last Post: reukiodo
  ROCK64 v3 can it boot from USB? Tsagualsa 4 1,977 11-29-2022, 11:31 AM
Last Post: Macgyver
  Rock64 u-boot for eMMC Build Error mexicanflyer 0 1,009 09-18-2022, 02:29 PM
Last Post: mexicanflyer
  Rock64 enable 1-wire to read DS18B20 or Dallas temperature sensor Perry 2 3,020 02-12-2021, 08:02 PM
Last Post: Perry
  boot hdd usb3 philipe 1 2,594 01-27-2021, 02:12 PM
Last Post: tllim
  Libreelec Rock64 - 4GB no boot spiker15 3 4,475 11-02-2020, 12:36 AM
Last Post: wilsonYan
  Rock64 - boot helpmerock 2 3,474 10-08-2020, 01:29 PM
Last Post: helpmerock
  No boot up after power on Whoopsadaisy 4 5,563 09-26-2020, 05:14 PM
Last Post: simonsouth

Forum Jump:


Users browsing this thread: 1 Guest(s)