commit
715e573029
4 changed files with 13 additions and 0 deletions
|
|
@ -73,6 +73,8 @@ class Board:
|
||||||
board_id = self._beaglebone_id()
|
board_id = self._beaglebone_id()
|
||||||
elif chip_id == chips.AM65XX:
|
elif chip_id == chips.AM65XX:
|
||||||
board_id = self._siemens_simatic_iot2000_id()
|
board_id = self._siemens_simatic_iot2000_id()
|
||||||
|
elif chip_id == chips.AM67A:
|
||||||
|
board_id = self._beagleyai_id()
|
||||||
elif chip_id == chips.DRA74X:
|
elif chip_id == chips.DRA74X:
|
||||||
board_id = self._bbai_id()
|
board_id = self._bbai_id()
|
||||||
elif chip_id == chips.SUN4I:
|
elif chip_id == chips.SUN4I:
|
||||||
|
|
@ -342,6 +344,12 @@ class Board:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
# pylint: enable=no-self-use
|
# pylint: enable=no-self-use
|
||||||
|
def _beagleyai_id(self) -> Optional[str]:
|
||||||
|
"""Try to detect id of a BeagleY-AI board."""
|
||||||
|
board_value = self.detector.get_device_model()
|
||||||
|
if "BeagleY-AI" in board_value:
|
||||||
|
return boards.BEAGLEY_AI
|
||||||
|
return None
|
||||||
|
|
||||||
def _bbai_id(self) -> Optional[str]:
|
def _bbai_id(self) -> Optional[str]:
|
||||||
"""Try to detect id of a Beaglebone AI related board."""
|
"""Try to detect id of a Beaglebone AI related board."""
|
||||||
|
|
|
||||||
|
|
@ -183,6 +183,8 @@ class Chip:
|
||||||
# pylint: disable=too-many-branches,too-many-statements
|
# pylint: disable=too-many-branches,too-many-statements
|
||||||
# pylint: disable=too-many-return-statements
|
# pylint: disable=too-many-return-statements
|
||||||
"""Attempt to detect the CPU on a computer running the Linux kernel."""
|
"""Attempt to detect the CPU on a computer running the Linux kernel."""
|
||||||
|
if self.detector.check_dt_compatible_value("beagle,am67a-beagley-ai"):
|
||||||
|
return chips.AM67A
|
||||||
if self.detector.check_dt_compatible_value("ti,am625"):
|
if self.detector.check_dt_compatible_value("ti,am625"):
|
||||||
return chips.AM625X
|
return chips.AM625X
|
||||||
if self.detector.check_dt_compatible_value("ti,am654"):
|
if self.detector.check_dt_compatible_value("ti,am654"):
|
||||||
|
|
|
||||||
|
|
@ -21,6 +21,7 @@ BEAGLEBONE_AIR = "BEAGLEBONE_AIR"
|
||||||
BEAGLEBONE_AI = "BEAGLEBONE_AI"
|
BEAGLEBONE_AI = "BEAGLEBONE_AI"
|
||||||
BEAGLEBONE_POCKETBONE = "BEAGLEBONE_POCKETBONE"
|
BEAGLEBONE_POCKETBONE = "BEAGLEBONE_POCKETBONE"
|
||||||
BEAGLEV_STARLIGHT = "BEAGLEV_STARLIGHT"
|
BEAGLEV_STARLIGHT = "BEAGLEV_STARLIGHT"
|
||||||
|
BEAGLEY_AI = "BEAGLEY_AI"
|
||||||
BEAGLELOGIC_STANDALONE = "BEAGLELOGIC_STANDALONE"
|
BEAGLELOGIC_STANDALONE = "BEAGLELOGIC_STANDALONE"
|
||||||
OSD3358_DEV_BOARD = "OSD3358_DEV_BOARD"
|
OSD3358_DEV_BOARD = "OSD3358_DEV_BOARD"
|
||||||
OSD3358_SM_RED = "OSD3358_SM_RED"
|
OSD3358_SM_RED = "OSD3358_SM_RED"
|
||||||
|
|
@ -420,6 +421,7 @@ _ODROID_40_PIN_IDS = (
|
||||||
_ODROID_MINI_PC_IDS = (ODROID_H3,)
|
_ODROID_MINI_PC_IDS = (ODROID_H3,)
|
||||||
|
|
||||||
_BEAGLEBONE_IDS = (
|
_BEAGLEBONE_IDS = (
|
||||||
|
BEAGLEY_AI,
|
||||||
BEAGLE_PLAY,
|
BEAGLE_PLAY,
|
||||||
BEAGLEBONE_AI64,
|
BEAGLEBONE_AI64,
|
||||||
BEAGLEBONE,
|
BEAGLEBONE,
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,7 @@ OS_AGNOSTIC = "OS_AGNOSTIC"
|
||||||
AM33XX = "AM33XX"
|
AM33XX = "AM33XX"
|
||||||
AM625X = "AM625X"
|
AM625X = "AM625X"
|
||||||
AM65XX = "AM65XX"
|
AM65XX = "AM65XX"
|
||||||
|
AM67A = "AM67A"
|
||||||
DRA74X = "DRA74X"
|
DRA74X = "DRA74X"
|
||||||
TDA4VM = "TDA4VM"
|
TDA4VM = "TDA4VM"
|
||||||
IMX6ULL = "IMX6ULL"
|
IMX6ULL = "IMX6ULL"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue