blob: 94e00c4f2c2be2dbfefe554d15fc7834d4bbf03f [file] [log] [blame]
Vishwanatha Subbanna2180b2d2017-06-28 14:05:57 +05301#include "config.h"
Deepak Kodihalli92a63412017-03-17 05:01:00 -05002
Gunnar Mills94df8c92018-09-14 14:50:03 -05003#include "elog-errors.hpp"
4#include "occ_events.hpp"
5#include "occ_manager.hpp"
George Liuf3b75142021-06-10 11:22:50 +08006#include "utils.hpp"
Chris Cain1be43372021-12-09 19:29:37 -06007#ifdef POWER10
8#include "powermode.hpp"
9#endif
Gunnar Mills94df8c92018-09-14 14:50:03 -050010
11#include <org/open_power/OCC/Device/error.hpp>
12#include <phosphor-logging/elog.hpp>
13#include <phosphor-logging/log.hpp>
14#include <xyz/openbmc_project/Common/error.hpp>
15
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053016using namespace phosphor::logging;
17
18using namespace sdbusplus::org::open_power::OCC::Device::Error;
Gunnar Mills94df8c92018-09-14 14:50:03 -050019using InternalFailure =
20 sdbusplus::xyz::openbmc_project::Common::Error::InternalFailure;
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053021
George Liud0345ae2021-09-10 13:13:28 +080022int main(int /*argc*/, char** /*argv[]*/)
Deepak Kodihalli92a63412017-03-17 05:01:00 -050023{
George Liuf3b75142021-06-10 11:22:50 +080024 auto& bus = open_power::occ::utils::getBus();
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053025
26 // Need sd_event to watch for OCC device errors
27 sd_event* event = nullptr;
28 auto r = sd_event_default(&event);
29 if (r < 0)
Deepak Kodihalli92a63412017-03-17 05:01:00 -050030 {
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053031 log<level::ERR>("Error creating a default sd_event handler");
32 return r;
Deepak Kodihalli6b492fb2017-03-18 01:09:28 -050033 }
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053034 open_power::occ::EventPtr eventP{event};
35 event = nullptr;
36
37 // Attach the bus to sd_event to service user requests
38 bus.attach_event(eventP.get(), SD_EVENT_PRIORITY_NORMAL);
39
40 sdbusplus::server::manager::manager objManager(bus, OCC_CONTROL_ROOT);
Chicago Duanbb895cb2021-06-18 19:37:16 +080041#ifdef READ_OCC_SENSORS
42 sdbusplus::server::manager::manager objManagerXyz(bus, OCC_SENSORS_ROOT);
43#endif
Chris Cain1be43372021-12-09 19:29:37 -060044#ifdef POWER10
45 sdbusplus::server::manager::manager objManagerXyzControl(
46 bus, "/xyz/openbmc_project/control");
47#endif
George Liuf3b75142021-06-10 11:22:50 +080048 open_power::occ::Manager mgr(eventP);
Vishwanatha Subbannaee4d83d2017-06-29 18:35:00 +053049
50 // Claim the bus since all the house keeping is done now
51 bus.request_name(OCC_CONTROL_BUSNAME);
52
53 // Wait for requests
54 sd_event_loop(eventP.get());
Deepak Kodihalli92a63412017-03-17 05:01:00 -050055
56 return 0;
57}