Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions gpioioctl/basic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,41 +9,16 @@
package gpioioctl

import (
"log"
"testing"

"periph.io/x/conn/v3/gpio"
"periph.io/x/conn/v3/gpio/gpioreg"
)

var testLine *GPIOLine

func init() {
var err error

if len(Chips) == 0 {
makeDummyChip()
line := GPIOLine{
number: 0,
name: "DummyGPIOLine",
consumer: "",
edge: gpio.NoEdge,
pull: gpio.PullNoChange,
direction: LineDirNotSet,
}

chip := GPIOChip{name: "DummyGPIOChip",
path: "/dev/gpiochipdummy",
label: "Dummy GPIOChip for Testing Purposes",
lineCount: 1,
lines: []*GPIOLine{&line},
}
Chips = append(Chips, &chip)
if err = gpioreg.Register(&line); err != nil {
nameStr := chip.Name()
lineStr := line.String()
log.Println("chip", nameStr, " gpioreg.Register(line) ", lineStr, " returned ", err)
}
}
}

Expand Down
1 change: 0 additions & 1 deletion gpioioctl/dummy.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ func makeDummyChip() {
lines: []*GPIOLine{&line},
}
Chips = append(Chips, &chip)
Chips = append(Chips, &chip)
if err := gpioreg.Register(&line); err != nil {
nameStr := chip.Name()
lineStr := line.String()
Expand Down
85 changes: 71 additions & 14 deletions gpioioctl/gpio.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import (
"path"
"path/filepath"
"runtime"
"sort"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -402,6 +403,9 @@ func newGPIOChip(path string) (*GPIOChip, error) {

chip.name = strings.Trim(string(info.name[:]), "\x00")
chip.label = strings.Trim(string(info.label[:]), "\x00")
if len(chip.label) == 0 {
chip.label = chip.name
}
chip.lineCount = int(info.lines)
var line_info gpio_v2_line_info
for line := 0; line < int(info.lines); line++ {
Expand Down Expand Up @@ -591,32 +595,85 @@ func (d *driverGPIO) After() []string {
//
// https://docs.kernel.org/userspace-api/gpio/chardev.html
func (d *driverGPIO) Init() (bool, error) {
if runtime.GOOS == "linux" {
items, err := filepath.Glob("/dev/gpiochip*")
if err != nil {
return true, err
}
if len(items) == 0 {
return false, errors.New("no GPIO chips found")
Chips = make([]*GPIOChip, 0)
if runtime.GOOS != "linux" {
return true, nil
}
items, err := filepath.Glob("/dev/gpiochip*")
if err != nil {
return true, fmt.Errorf("gpioioctl: %w", err)
}
if len(items) == 0 {
return false, errors.New("no GPIO chips found")
}
// First, get all of the chips on the system.
chips := make([]*GPIOChip, 0)
var chip *GPIOChip
for _, item := range items {
chip, err = newGPIOChip(item)
if err == nil {
chips = append(chips, chip)
} else {
log.Println("gpioioctl.driverGPIO.Init() Error", err)
}
Chips = make([]*GPIOChip, 0)
for _, item := range items {
chip, err := newGPIOChip(item)
if err != nil {
log.Println("gpioioctl.driverGPIO.Init() Error", err)
return false, err
}
// Now, sort the chips so that those labeled with pinctrl- ( a Pi kernel standard)
// come first. Otherwise, sort them by label. This _should_ protect us from any
// random changes in chip naming/ordering.
sort.Slice(chips, func(i, j int) bool {
I := chips[i]
J := chips[j]
if I.Label()[:8] == "pinctrl-" {
if J.Label()[:8] == "pinctrl-" {
return I.Label() < J.Label()
} else {
return true
}
} else if J.Label()[:8] == "pinctrl-" {
return false
} else {
return I.Label() < J.Label()
}
})

mName := make(map[string]bool, 0)
// Get a list of already registered GPIO Line names.
registeredPins := make(map[string]bool)
for _, pin := range gpioreg.All() {
registeredPins[pin.Name()] = true
}

// Now, iterate over the chips we found and add their lines to conn/gpio/gpioreg
for _, chip := range chips {
// On a pi, gpiochip0 is also symlinked to gpiochip4, checking the map
// ensures we don't duplicate the chip.
if _, found := mName[chip.Name()]; !found {
Chips = append(Chips, chip)
mName[chip.Name()] = true
// Now, iterate over the lines on this chip.
for _, line := range chip.lines {
// If the line has some sort of reasonable name...
if len(line.name) > 0 && line.name != "_" && line.name != "-" {
// See if the name is already registered. On the Pi5, there are at
// least two chips that export "2712_WAKE" as the line name.
if _, ok := registeredPins[line.Name()]; ok {
// This is a duplicate name. Prefix the line name with the
// chip name.
line.name = chip.Name() + "-" + line.Name()
if _, found := registeredPins[line.Name()]; found {
// It's still not unique. Skip it.
continue
}
}
registeredPins[line.Name()] = true
if err = gpioreg.Register(line); err != nil {
log.Println("chip", chip.Name(), " gpioreg.Register(line) ", line, " returned ", err)
}
}
}
}
}
return true, nil
return len(Chips) > 0, nil
}

var drvGPIO driverGPIO
Expand Down