summaryrefslogtreecommitdiff
path: root/meta-fii/meta-mori
AgeCommit message (Collapse)AuthorFilesLines
2023-07-01meta-fii: meta-mori: Update unit power behaviorKyle Nieman3-4/+12
1) Remove unwanted dependencies for the warm reboot targets. 2) Set the power policy to always on to prevent unwanted host power off. 3) Change user reset command to use ipmitool command Change-Id: Ie87296a48349219860c79f6275133595f3501e43 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-07-01meta-fii: meta-mori: Add BIOS accessing library functionsKyle Nieman2-17/+49
The BMC accesses the BIOS SPI during flashing, but the BMC will potentially need to access it while the host is running. Add library functions that performs a handshake to request access to it. Update current BIOS SPI access to use the functions. Also fix shellcheck error. Tested: Flashed BMC image on unit. Ensured that BIOS flash is still successful. Change-Id: Icc91802647a6967694fca3e57bbc56f2c1db9189 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-06-30meta-fii: meta-mori: Add setup for firmware verificationKyle Nieman3-1/+16
Firmware of an older stage board will not be allowed on a current stage board. During the flashing process, AC cycles are prevented. Overview of Changes: 1.)mori-lib.sh -Modify to add definitions that will be used for AC power cycle delay. 2.)init_once.sh -Modify to no longer use HPM_STBY_RST_N. 3.)mori-fw-ver.service -Modify to wait until fw verification process is finished to prevent failed version retrieval. Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: Idd5a9613bc3e1086dd44e2579b5cb56108d430d0
2023-06-30meta-fii: meta-mori: Add installation check for firmware utilitiesKyle Nieman2-6/+20
Check that utilities used for flashing and version retrieval are installed prior to being used to prevent unintended behavior. Change-Id: I0d4547c43d78f03462e9e05ae465162cccb21f46 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-06-30meta-fii: meta-mori: Fix graceful shutdown was force shutdown issueVincent Chou1-0/+1
The obmc-host-shutdown_0.target requires obmc-chassis-poweroff_0.target cause the power_off function being called, and eventually do the force off, so we remove the obmc-chassis-poweroff_0.target from obmc-host-shutdown_0.target's requires. Change-Id: I28184aafb3aac9e0b10000fb15e8817e4976465b Signed-off-by: Vincent Chou <vincent.chou@fii-na.com>
2023-06-30meta-fii: meta-mori: Get BMC version from os-releaseCharles Boyer2-9/+6
This will parse the Major, sub-Major, and Minor versions from the /etc/os-release file VERSION_ID line. The version will be presented with the pattern <Major>.<sub-Major>.<Minor>. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I6cfebf16b840cb88216c3b8f3aeb4c295abc3e05
2023-06-30meta-fii: meta-mori: Relocate dependency on mori-bios-verifyKyle Nieman1-2/+0
Dependency on mori-bios-verify.service was set in host-powerctrl.service. Removed dependency as it should be set from mori-bios-verify.service in case of removal. Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: Ibc9fec6ef8e5912ebc137e712b1ac595997dbb0a
2023-06-30meta-fii: meta-mori: Fix error checking for fw flashKyle Nieman1-18/+33
The return values for flashing cplds were incorrect when failure occurred as it was expecting a integer value, but instead received text output. To check for error, output is now searched for error messages. Tested: I flashed an incorrect version of CPLD verify and saw that flash message correctly stated failed. For bios flash, the output would hang for an excessive amount of time the flashing status. This is due to the output being stored to the variable prior to being output. Tested: I flashed the bios, and instantly saw a counter for the erase progress. Upon failing flash verification, the script output a failure message. Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: Ie84418117ab4e712b4f5b5c15190044e2118a808
2023-06-06obmc-console: Convert configs from socket-id to console-idAndrew Jeffery1-1/+1
As of 9a8f30ec5b58 ("obmc-console: Introduce console-id, deprecate socket-id") in obmc-console `console-id` is preferred over `socket-id`. Convert all in-tree configurations to `console-id` to enable removal of support for the deprecated `socket-id` configuration option. Change-Id: Ifd50603c378cfed5eb793b829b8296b7964e4194 Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
2023-05-27meta-fii: meta-mori: Include obmc-debug-collectorIan Johnson1-1/+0
phosphor-debug-collector is now used in the meta-mori layer for faultlogs, so it needs to be included as part of the IMAGE_FEATURES. Change-Id: I45390feec21ce4c99c7fd19118a44fe6604f5474 Signed-off-by: Ian Johnson <ian.johnson@fii-na.com>
2023-05-12Revert "Add socket-id for the first console"Andrew Jeffery1-1/+0
This reverts commit ec7cab9378f548e94ee4af83946b2583d1fc7194. ec7cab9378f5 ("Add socket-id for the first console") was only a partial fixup of the obmc-console configurations found in the tree. For historical reasons not all platforms that support multiple consoles install a client configuration file for all consoles. Instead they relied on some default behaviour that was removed in obmc-console's 4e7186918599 ("Fixed broken dbus interface for multiple consoles"). Applying the configuration changes in the manner of ec7cab9378f5 ("Add socket-id for the first console") resulted in an asymmetric configuration between the client and server, breaking some SSH SOL instances. As of ae2460d0b8e8 ("obmc-console: Provide a default value for `console-id`.") in obmc-console the requirement to specify `socket-id`[^1] is lifted. Instead, the configuration can choose to override a default value. This restores the original behaviour and unbreaks SSH SOL. [^1]: Now an alias of the `console-id` configuration key Websocket and IPMI consoles remain broken. A fix is under development that also takes a proper approach to supporting multiple consoles in bmcweb, and the same solution pattern can be applied in ipmid. More discussion of the problems involved can be found here: https://amboar.github.io/notes/2023/05/08/happenings-in-obmc-console.html Change-Id: I274284c791758f336da6d6301dc523bac2b5dd69 Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
2023-05-04meta-fii: meta-mori: Set watchdog fallback to 3 hoursKyle Nieman1-1/+1
Set fallback watchdog timer to 3 hours to guarantee host boot. Change-Id: Ieb10ff5fee309163720f9c93baea2f5491fb8af5 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-05-03meta-fii: meta-mori: Remove hotswap-power-cycle inclusionJonico Eustaquio1-1/+0
Remove inclusion of hotswap-power-cycle recipe since it has been removed here: https://gerrit.openbmc.org/c/openbmc/openbmc/+/62893 Change-Id: I213ea0f506f2f8490a0cd8190156dd7488fe1965 Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com>
2023-04-27meta-fii: meta-mori: Add skm backup config to binarystoreCharles Boyer1-0/+6
The backup copy will be stored in Mobo FRU EEPROM. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: Id9a0b409f7cbe53ab91f7d5655e39f0a318ba9d1
2023-04-27meta-fii: meta-mori: Support BMC_ALIVE led with led-managerJonico Eustaquio2-3/+2
LED_BMC_ALIVE is now managed by phosphor-led-manager instead of by init_once.sh. Asserting LED_BMC_ALIVE is removed from init_once.sh since the service obmc-led-group-start@bmc_booted.service now asserts the dbus property for LED_BMC_ALIVE's led.yaml group to be used. Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com> Change-Id: Ib68be05246a2dc66458330d99721848f86a1ed50
2023-04-27meta-fii: meta-mori: Remove hotswap-power-cycleJonico Eustaquio2-31/+0
Removes the hotswap-power-cycle recipe and service Change-Id: Iee2dcf508760f57ea5faedb40eee3d8cf48103d0 Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com>
2023-04-21Add socket-id for the first consoleNinad Palsule1-0/+1
This drop adds socket-id for first console. This was left out before but with the new design this parameter is required and enforced by obmc-console code. It is decided to set "socket-id = console0" initially because that is the current path used by bmcweb but in future you can change this value to whatever is appropriate. The console information is now available through the DBUS interface. Each console server register it's object path on DBUS. The leaf node of the object path is used to create a console path. For example in the following console0 the leaf node "console0" is used to make up the console path and the GUI will use console path "/console/console0" to connect to the console. busctl tree xyz.openbmc_project.Console.console0 `-/xyz `-/xyz/openbmc_project `-/xyz/openbmc_project/console `-/xyz/openbmc_project/console/console0 Here is a discord thread where new design was discussed. https://discord.com/channels/775381525260664832/1083551792094249051 Tested: Tested on the rainier system. Related commits: 1) phosphor-dbus-interface: https://gerrit.openbmc.org/c/openbmc/phosphor-dbus-interfaces/+/61486 2) obmc-console: https://gerrit.openbmc.org/c/openbmc/obmc-console/+/62496 3) bmcweb: https://gerrit.openbmc.org/c/openbmc/bmcweb/+/62525 Change-Id: I5fd06f3aac69872a3e5032d592a9b59711795cfe Signed-off-by: Ninad Palsule <ninadpalsule@us.ibm.com>
2023-04-08meta-fii: meta-mori: Add log-alarm packageconfigJonico Eustaquio1-1/+1
The log-alarm PACKAGECONFIG is added so that sel-logger can monitor and create SEL logs when virtual and pldm sensors cross thresholds. Change-Id: Id786a26139b395d4a3a4aeed7934906a63167210 Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com>
2023-04-04meta-fii: meta-mori: Update script to retrieve BIOS versionJonico Eustaquio1-2/+3
An OpenBMC subtree update looks to have removed how dbus properties could be seen from just using busctl introspect. To get the actual value of the BIOS Version property, the script now uses busctl get-property instead. Change-Id: I3c6079026e9ea3193461fb86739892b178327fed Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com>
2023-03-29meta-fii: meta-mori: Add watchdog support with fallbackVincent Chou3-0/+38
Add watchdog service to monitor the host status and execute the expire actions when host doesn't reset the watchdog timer. Add fallback support to the watchdog with the interval set to 10 minutes. Timer is reset with changes to host boot progress. If the host fails to reset the watchdog, then the watchdog action is performed with fallback to AC cycle after 10 minutes. Signed-off-by: Vincent Chou <Vincent.Chou@fii-na.com> Change-Id: Id0905ebc72405713806bbe2d803e6ca559488495
2023-03-29meta-fii: meta-mori: Remove dependency for mori bios verifyJonico Eustaquio1-0/+6
The dependency obmc-host-reboot target has on obmc-host-shutdown and phosphor-reboot-host must be removed to allow for the mori-bios-verify service. The mori-bios-verify service will have a 60s sleep that requires the host to hold its state for the 60s duration after it is commanded to powercycle. Without these dependencies removed, the host would shutdown immediately. Signed-off-by: Jonico Eustaquio <jonico.eustaquio@fii-na.com> Change-Id: If2df43c8276626a3623bd4e796d87ea6817c32c7
2023-03-29meta-fii/meta-mori: Remove entity map configurationCharles Boyer4-46/+0
Removes the entity association map that is no longer used. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I4cb1dffea598bd27bc1cbbf94ef94332a04af2f6
2023-03-29meta-fii: meta-mori: Rename BIOS partition to "hnor"Charles Boyer1-1/+1
The nvparm tool expects the BIOS partition to be named "hnor". Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I472bd32b7c70a5a8189cf16fcbf430b3d1094361
2023-03-29meta-fii: meta-mori: Reset BIOS SPI before BIOS flashCharles Boyer2-1/+11
The host verification fails because the BIOS SPI is quad mode during the flash. We must reset the BIOS SPI for the host to be able to read the SPI for its verification stage. Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I0bf38a10ca939f7fcab338fe3f654303a4dea9f9
2023-03-23meta-fii: meta-mori: Add command for controlling GPIOsKyle Nieman1-0/+24
Add command to allow user to control GPIOs using mori.sh instead of having to source mori-lib.sh and use functions. Change-Id: I3cce175a41ca13bf3e14cea49495cde561348980 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-03-11meta-phosphor: add offset for uboot environmentPatrick Williams1-0/+1
The previous static-image building code only confirmed that the u-boot image was smaller than the offset for the kernel image, but most systems place the u-boot environment after the u-boot image. It is possible that we have a u-boot image bigger than the u-boot partition, which is then overwritten on boot by the u-boot env. Check for this at image build time and prevent it from happening. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I3a1e6654272cedb3e840bbea4771ae4e464c4ecd
2023-03-02meta-fii: meta-mori: Fix mori-lib.sh gpio functionsKyle Nieman1-3/+30
The functions in mori-lib.sh return the wrong values for get_gpio_num and get_gpio_ctrl. get_gpio_num is not prepared to handle a device that has more than 1 gpiobank associated with it. get_gpio_ctrl is dependent on get_gpio_num to retrieve the correct identifying number for the gpio, and the path location of the gpio state differs for gpios added by some devices compared to the norm. mori-lib.sh is modify to account for these differences. Tested: I ran on real machine and checked that a gpio added by each type of device is capable of being read with get_gpio_ctrl without error. Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: I212ae4f14bbb57b9643befd0aadd8ac5ef4726da
2023-03-01meta-fii: meta-mori: Add command for controlling host access to RTCKyle Nieman1-4/+39
Add command to allow user to enable or disable access for the host to the RTC. Change-Id: I0887cc18ed804191ffd80e5c6034d8ed1a0c3b66 Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com>
2023-02-14treewide: remove Logging service dependenciesBrad Bishop1-2/+0
The logging service is dbus activated now, so explicitly declaring dependencies is unnecessary and redundant. Change-Id: I87d61fbeb04a251caf88aa86cb21631e7fc2a1c4 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2023-02-14meta-phosphor: mapper cleanupsBrad Bishop3-5/+0
Mapper ships with systemd unit and dbus configuration files now, so remove unnecessary bitbake classes. Mapper is dbus-activated, so obmc-mapper.target dependencies are redundant and no longer necessary. obmc-mapper.target is the last target in obmc-targets, so remove that recipe and any dependencies on it. Change-Id: I59ff8dcd480b4449d0ef59422ba80c12848dade9 Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
2023-01-13yocto:mickledore: add support for new yocto layerAndrew Geissler1-1/+1
Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I8e54833ac78e540e9dd5011533d53ff9a3af6763
2022-11-28rename obmc-op-control-power to phosphor-skeletonAndrew Geissler1-1/+1
This power control implementation is not specific to openpower systems (as seen by the variety of systems including it) so rename it to something more appropriate. This is using code from skeleton which is not ideal but that's a change for another day. Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: Iffe6427b5494558b53cd6f5716a08cce82cb90d8
2022-11-09meta-fii: meta-mori: Generalize I2C bus for ADM1266Kyle Nieman2-2/+5
ADM1266 executables now take I2C bus as a command line argument instead of being hardcoded, so they can be utilized by additional projects. Overview of changes: 1.)mori-fw.sh - Modify call to ADM1266 to pass I2C bus 2.)mori.sh - Modify call to ADM1266 to pass I2C bus Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: Id9d5e7d829557a30d929dad119326ac16e901c9b
2022-11-02Remove PACKAGECONFIG for nic-ethtoolJason M. Bills1-1/+0
The nic-ethtool option was removed from phosphor-network, so we also need to remove the PACKAGECONFIG option to build the phosphor-network bump. Tested: Confirmed that the latest phosphor-network builds successfully. Signed-off-by: Jason M. Bills <jason.m.bills@linux.intel.com> Change-Id: Id1e12f3f2af2450500ec6c0b2acef284cb69d0a7
2022-10-27meta-fii: meta-mori: Set up phosphor-led-managerVincent Chou8-0/+106
Summary of changes: 1. Create a yaml file to set up the action of SYSTEM BOOT STATUS LED 2. Add bb file to install yaml to phosphor led manager package 3. Add a script to control the SYSTEM BOOT STATUS LED corresponding to the OS status 4. Set up phosphor led sysfs so the physical led can be controlled 5. Set CHASSIS TARGET to none to remove unnecessary service call to obmc-led-group-start/stop@power_on/off. Signed-off-by: Vincent Chou <vincent.chou@fii-na.com> Change-Id: Ia7b136c52518a1e2af6662ffc42b4f72b3e15584
2022-10-14treewide: more obmc-host-ctl cleanupsPatrick Williams1-1/+0
obmc-host-ctl is defined as a MACHINE, DISTRO, and IMAGE feature. The IMAGE feature pulls in a virtual provider only if the COMBINED feature (MACHINE + DISTRO) is enabled. This is only done on openpower machines. There are a lot of other places where machines are half-way disabling this feature and/or changing variables which have zero effect anyhow. Clean up almost all references to `obmc-host-ctl`. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I090d782bb6a34dc4e3c43df97e8ccf6e1812fed5
2022-09-30add langdale to compatible layerAndrew Geissler1-1/+1
Signed-off-by: Andrew Geissler <geissonator@yahoo.com> Change-Id: I65febeeec11e6e5b40ee728f42cfbe77023dae1e
2022-09-21meta-fii: meta-mori: add phosphor console packageGrant Williams8-6/+75
Add phosphor console mori_uart_mux_ctrl script,obmc-console service files, and .conf files - Added console feature for host & mpro - Added mori_uart_mux_ctrl.sh to set gpio S0_UART0_BMC_SEL and S0_UART1_BMC_SEL allowing routing between host & mpro consoles to bmc - Added host_console_uart_configuration.service so that it runs before obmc-console. Set it to require multi-user.target, which is also required by obmc-console. Signed-off-by: Grant Williams <grant.williams@fii-na.com> Change-Id: I5d7002c20c5d1b87fa5c78e69b0885fc635c6145
2022-09-15meta-fii: meta-mori: Add u-boot configurations for moriAshwin Murali4-0/+37
Summary of Changes: - Add basic fw_env.config for Nuvoton system. - Add u-boot configuration file Signed-off-by: Ashwin Murali <ashwin.murali@fii-na.com> Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I3e0f44b965ee402c105e4020c41235ebebda375b
2022-09-15meta-fii: meta-mori: Add phosphor-state-manager configurationsCharles Boyer4-0/+70
Summary of Changes: - Add custom Chassis and Host services - Enable Host Condition GPIO using host0-ready Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I74330028d4ce20d8abf4d6a5169c1bc6c491c7d4
2022-09-12treewide: handle more upstream TEMPLATECONF movePatrick Williams1-0/+0
We also need to move the conf-notes.txt files. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Ic44e015c0216b526de4fec277ad42f162bca1f33
2022-09-09treewide: handle upstream TEMPLATECONF movePatrick Williams2-0/+0
The latest poky commit is requiring us to have all of our template configs in a subdirectory instead of directly in the `conf` directory. Without this we end up with errors during setup like: ``` Error: TEMPLATECONF value (which is .../openbmc/meta-facebook/meta-bletchley/conf) must point to meta-some-layer/conf/templates/template-name ``` Fix this by moving all of our template files into the 'default' template subdirectory (following the pattern of poky) and modifying `setup` as necessary to follow. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: Iecefde73d55acbb6bc63ae3d68c4311adaf327ae
2022-08-23meta-fii: meta-mori: Add I2C arrays of power regulators in mori-lib.shKyle Nieman1-0/+2
Defined I2C bus and address for ADM1272(HOTSWAP_CTRL) and PM6764(STBUCK). Added to prevent hardcoding and promote modularity. Signed-off-by: Kyle Nieman <kyle.nieman@fii-na.com> Change-Id: I6bd3e993d944e87b9242d6237850d2a4b0e30ada
2022-07-22meta-fii: meta-mori: Consolidate kernel configurationsCharles Boyer1-46/+28
For the upgrade to Kernel 5.15.29, - Consolidate the configurations between those required to be added and those already included - Organize the configurations into categories Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: Ia0df58344772af576e9ddb5346d8d505ce11fd1b
2022-07-22meta-fii: meta-mori: Add phosphor-buttons and gpio_defs.jsonCharles Boyer3-0/+37
Adds the packages to support the button handler and signals. Add the GPIO definitions for obmc-libobmc-intf of the skeleton repository. The GPIOs configured are, - PGOOD: Host power good - POWER_BUTTON: Power button input - RESET_BUTTON: Reset button input Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I1a8ca713c00b7220793c58b1695ae680882a3404
2022-07-22meta-fii: meta-mori: Add pwm_init packageAshwin Murali4-0/+71
Add pwm_init service to set fans to pwm mode and initialise them to a value of 50% on boot. Signed-off-by: Ashwin Murali <ashwin.murali@fii-na.com> Change-Id: I07963eda9b0c264e66d1dd4f2a0d31f4e74d831e
2022-07-22meta-fii: meta-mori: Add Entity MapGrant Williams3-0/+41
Adding Mori Entity Association Map .bb and .json files. Signed-off-by: Grant Williams <grant.williams@fii-na.com> Change-Id: I3e090f9cc4258d0215a1af836ea8d85e7b852483
2022-07-22meta-fii: meta-mori: Add ipmi flash and firmware update servicesGrant Williams12-0/+207
Adding bios update, bmc update, cpld update, and phosphor ipmi flash packages Signed-off-by: Grant Williams <grant.williams@fii-na.com> Change-Id: I5543f520f710e065a476999991a48bdaf0544c0c
2022-07-20meta-fii: meta-mori: Add mori-boot and mori-cmdCharles Boyer6-0/+369
Summary of Changes: - Add basic mori.sh tool - Add mori-boot for host and switch initialization Signed-off-by: Charles Boyer <Charles.Boyer@fii-usa.com> Change-Id: I2cee6a2b6a15a1e2f9a53baf331fb452f73f080d
2022-07-15meta-fii: meta-mori: Add mori-fw-utility filesGrant Williams6-0/+284
Add the mori-fw file and package in packagegroup. Supports: CPLD, BIOS, and Bootstrap flashing. Signed-off-by: Grant Williams <grant.williams@fii-na.com> Change-Id: I5541af3d07c01a0602f7794c5f1b6610622e93ee