from ekfsm.core.components import SysTree
from ekfsm.exceptions import ConfigError
from ekfsm.log import ekfsm_logger
from ..core.sysfs import SysfsDevice
from .generic import Device
logger = ekfsm_logger(__name__)
[docs]
class MuxChannel(Device):
"""
A MuxChannel is a device that represents a channel on an I2C multiplexer.
It is a child of the I2CMux device.
The MuxChannel device is used to access the I2C bus on the channel.
Parameters
----------
name
The name of the device.
channel_id
The channel ID of the device.
parent
The parent device of the MuxChannel.
children
The children of the MuxChannel device. If None, no children are created.
"""
def __init__(
self,
name: str,
parent: "I2CMux",
children: list[Device] | None = None,
abort=False,
channel_id: int | None = None,
*args,
**kwargs,
) -> None:
super().__init__(name, parent, children, abort, *args, **kwargs)
self.channel_id = channel_id
if parent.sysfs_device is None:
raise ConfigError(f"{self.name}: Parent I2CMux must have a sysfs_device")
if not isinstance(self.parent, I2CMux):
raise ConfigError(f"{self.name}: Parent must be an I2CMux instance")
path = parent.sysfs_device.path / f"channel-{self.channel_id}"
self.sysfs_device = SysfsDevice(path, False)
[docs]
class I2CMux(Device):
"""
This class represents an I2C multiplexer device.
Parameters
----------
name
The name of the device.
parent
The parent device of the I2CMux device. If None, no parent is created.
children
The children of the I2CMux device. If None, no children are created.
"""
def __init__(
self,
name: str,
parent: SysTree | None = None,
children: list[Device] | None = None,
abort=False,
*args,
**kwargs,
):
super().__init__(name, parent, children, abort, *args, **kwargs)
self.addr = self.get_i2c_chip_addr()
self.sysfs_device = self.get_i2c_sysfs_device(self.addr)