3. Allowing creation of sysfs entries `new_device` and `delete_device`On the I2C bus, these operate at the device level, you instantiate a
similar to what already exists for I2C, etc.
new I2C device. I assume here you are actually talking about board
level operations? So they would be 'new_board', and 'delete_board'
files in sysfs?
4. Allow using 1-wire-eeprom in a fashion that allows automatic boardSo there would actually be multiple child nodes, one per bus, and then
discovery.
Let me now introduce the 2 architectures we will be discussing:
1. mikrobus-connector has phandle to mikrobus-board:
```
\ {
connector1 {
board = <&board1>;
};
mikrobus_boards {
board1 {
...
};
};
};
```
2. mikrobus board is a child node of mikrobus-connector:
```
\ {
connector1 {
...
spi {
maybe a simple-bus for nodes which do not correspond to a bus,
e.g. gpio-key, gpio-leds, etc.,
board1 {So by default, you have an empty mikrobus_boards node? You then use DT
...
};
};
};
};
```
I will now go over how each of these goals might look like in both of the
architecture.
1. Keeping the device tree properties upstream in a system independent way:
a. mikrobus-connector has phandle to mikrobus-board
It is possible to create an overlay as follows which will work with any
system that defines the `mikrobus_boards` node. This node is completely
independent of mikroBUS connector and thus does not need to be rewritten (or
generated) for each board. There are no problems for system with more than 1
mikrobus connector.
```
&mikrobus_boards {
board2 {
...
};
board3 {
...
};
};
overlay to load the needed board into this node, and then update the
phandle in the connection node to point to the newly loaded node?
b. mikrobus board is a child node of mikrobus-connector:It would be good to explain why...
Not sure how to do something similar here. The overlay needs to be rewritten
(or generated) for each board.
Systems with multiple mikrobus connectorsWhy? Just load the one overlay actually required.
will need multiple overlays adding the boards as child node of each
connector (with status = "disabled").
&connector1 {I don't actually understand this description. I was expecting more
spi = {
board 2 {
...
};
board 3 {
...
};
};
};
like:
connector1: {
spi = {
/* Optional TI TSC2046 touchscreen controller */
opt_touch: touchscreen@0 {
compatible = "ti,tsc2046";
spi-max-frequency = <2500000>;
reg = <0>;
pinctrl-0 = <&pmx_gpio_13>;
pinctrl-names = "default";
interrupts-extended = <&gpio0 13 IRQ_TYPE_EDGE_FALLING>;
};
};
i2c = {
opt_audio: audio@1a {
compatible = "ti,tlv320aic23";
reg = <0x1a>;
};
the_rest = {
gpio_keys {
compatible = "gpio-keys";
#address-cells = <1>;
#size-cells = <0>;
pinctrl-0 = <&pmx_reset_button &pmx_USB_copy_button>;
pinctrl-names = "default";
copy {
label = "USB Copy";
linux,code = <KEY_COPY>;
gpios = <&gpio0 15 GPIO_ACTIVE_LOW>;
};
reset {
label = "Reset";
linux,code = <KEY_RESTART>;
gpios = <&gpio0 16 GPIO_ACTIVE_LOW>;
};
};
This is completely made up. You probably should use an example of a
real complex board using multiple busses.
So for each actual bus on Mikrobus, you have a bus node, and then a
node for everything which is not bus orientated, like gpio-keys.
So the overlay would simply populate these child nodes.