Open bferrell opened 11 months ago
I'm also using an Argon One M.2 case and see this:
using raspi-gpio get BANK0 (GPIO 0 to 27): GPIO 2: level=1 alt=0 func=SDA1 pull=UP
I ran into that GPIO 2 conflict also once. Something was grabbing it during bootup or perhaps an app you have run.
Try running: sudo raspi-gpio set 2 op pu
If that works, then add it to one of the startup scripts. I find putting it in /boot/config.txt usually works though once I had to find a script that loaded much later.
This is what my working system reports for GPIO 2 now with raspi-gpio get: GPIO 2: level=1 fsel=5 alt=1 func=SA3 pull=UP
after using sudo raspi-gpio set 2 op pu in /etc/rc.local:
usr/bin/raspi-gpio get
GPIO 2: level=0 func=OUTPUT pull=UP
Then unloading sudo modprope -r smi_stream_dev sudo modprobe -r bcm2835_smi
sudo modprobe bcm2835_smi
[ 392.731933] pinctrl-bcm2835 fe200000.gpio: pin gpio2 already requested by fe804000.i2c; cannot claim for fe600000.smi [ 392.731966] pinctrl-bcm2835 fe200000.gpio: pin-2 (fe600000.smi) status -22 [ 392.731987] pinctrl-bcm2835 fe200000.gpio: could not request pin 2 (gpio2) from group gpio2 on device pinctrl-bcm2711 [ 392.732005] smi-bcm2835 fe600000.smi: Error applying setting, reverse things back
Suggestions? Any thought on Identifing fe804000.i2c; cannot claim for fe600000.smi?
I would take a look at your config/boot.txt settings. Just a guess, seems like some unliked mode of i2c is being enabled (indicated by the fe804000.i2c).
This is what I have:
In the middle of the file are some default entries, all are commented out except one:
dtparam=i2c_vc=on
At the end of my file in section [all]:
dtparam=i2c_vc=on enable_uart=0 dtparam=i2c_arm=off param=spi=off dtoverlay=spi1-3cs
ns and information see
dtparam=i2c_arm=off
dtparam=spi=off
dtparam=audio=on
camera_auto_detect=1
display_auto_detect=1
auto_initramfs=1
dtoverlay=vc4-kms-v3d max_framebuffers=2
disable_fw_kms_setup=1 #
arm_64bit=1
disable_overscan=1
arm_boost=1
[cm4]
otg_mode=1
[all]
enable_uart=1
raspi-gpio set 2 op pu
This may also help: https://paste.debian.net/hidden/d1d45f95/
This is likely NOT a caribou issue, but I'm stumped
debian bookworm
sudo modprobe bcm2835_smi
sudo modprobe bcm2835_smi_dev sudo modprobe smi_stream_dev dmesg [ 1413.067473] pinctrl-bcm2835 fe200000.gpio: pin gpio2 already requested by fe804000.i2c; cannot claim for fe600000.smi [ 1413.067490] pinctrl-bcm2835 fe200000.gpio: pin-2 (fe600000.smi) status -22 [ 1413.067498] pinctrl-bcm2835 fe200000.gpio: could not request pin 2 (gpio2) from group gpio2 on device pinctrl-bcm2711 [ 1413.067504] smi-bcm2835 fe600000.smi: Error applying setting, reverse things back [ 1460.269557] w1_master_driver w1_bus_master1: Attaching one wire slave 00.780000000000 crc 3a [ 1460.275390] w1_master_driver w1_bus_master1: Family 0 for 00.780000000000.3a is not registered. [ 1507.882060] w1_master_driver w1_bus_master1: Attaching one wire slave 00.f80000000000 crc b6 [ 1507.887805] w1_master_driver w1_bus_master1: Family 0 for 00.f80000000000.b6 is not registered. [ 1565.942799] w1_master_driver w1_bus_master1: Attaching one wire slave 00.040000000000 crc 61 [ 1565.948672] w1_master_driver w1_bus_master1: Family 0 for 00.040000000000.61 is not registered. [ 1569.607506] smi-stream-dev: smi_stream_dev_probe (fifo_mtu_multiplier=2, addr_dir_offset=2, addr_ch_offset=3)
Any thought on the fix for this?