blob: 35a0339f08aa897a7a0831e08b1ea41e808c8682 [file] [log] [blame]
George Keishingfbeaecc2016-08-16 05:24:31 -05001import os
2
Sweta Potthuridaf91342017-09-07 12:05:56 -05003OPENBMC_BASE_URI = '/xyz/openbmc_project/'
4OPENBMC_BASE_DBUS = 'xyz.openbmc_project.'
George Keishingcf910442016-12-08 03:12:59 -06005
George Keishingcae6e902017-09-07 13:35:59 -05006# org open power base URI.
7OPENPOWER_BASE_URI = '/org/open_power/'
8OPENPOWER_CONTROL = OPENPOWER_BASE_URI + 'control/'
9
10# REST URI base endpoint paths.
George Keishingcf910442016-12-08 03:12:59 -060011CONTROL_URI = OPENBMC_BASE_URI + 'control/'
George Keishing0da47e92017-10-23 02:22:29 -050012# old vs new code dependencies in many places.
13# TODO: remove when ready.
14SETTINGS_URI = '/org/openbmc/settings/'
George Keishingcf910442016-12-08 03:12:59 -060015WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/'
Sweta Potthuridaf91342017-09-07 12:05:56 -050016TIME_MANAGER_URI = OPENBMC_BASE_URI + 'time/'
17XYZ_NETWORK_MANAGER = OPENBMC_BASE_URI + 'network/'
George Keishingcf910442016-12-08 03:12:59 -060018
George Keishing06572472017-09-01 11:33:01 -050019# Sensors base variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050020SENSORS_URI = OPENBMC_BASE_URI + 'sensors/'
George Keishing06572472017-09-01 11:33:01 -050021
Sweta Potthuridaf91342017-09-07 12:05:56 -050022# State Manager base variables
Rahul Maheshwari2f8de6c2017-01-17 07:00:22 -060023BMC_REBOOT_TRANS = 'xyz.openbmc_project.State.BMC.Transition.Reboot'
24
George Keishingbec365b2017-01-19 01:28:41 -060025HOST_POWEROFF_TRANS = 'xyz.openbmc_project.State.Host.Transition.Off'
26HOST_POWERON_TRANS = 'xyz.openbmc_project.State.Host.Transition.On'
Rahul Maheshwarif7ead242017-02-14 01:59:42 -060027HOST_REBOOT_TRANS = 'xyz.openbmc_project.State.Host.Transition.Reboot'
George Keishingbec365b2017-01-19 01:28:41 -060028HOST_POWEROFF_STATE = 'xyz.openbmc_project.State.Host.HostState.Off'
29HOST_POWERON_STATE = 'xyz.openbmc_project.State.Host.HostState.Running'
30
31CHASSIS_POWEROFF_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.Off'
32CHASSIS_POWERON_TRANS = 'xyz.openbmc_project.State.Chassis.Transition.On'
33CHASSIS_POWEROFF_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.Off'
34CHASSIS_POWERON_STATE = 'xyz.openbmc_project.State.Chassis.PowerState.On'
35
36# State Manager URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050037SYSTEM_STATE_URI = OPENBMC_BASE_URI + 'state/'
38BMC_STATE_URI = OPENBMC_BASE_URI + 'state/bmc0/'
39HOST_STATE_URI = OPENBMC_BASE_URI + 'state/host0/'
40CHASSIS_STATE_URI = OPENBMC_BASE_URI + 'state/chassis0/'
41HOST_WATCHDOG_URI = OPENBMC_BASE_URI + 'watchdog/host0/'
George Keishingbec365b2017-01-19 01:28:41 -060042
George Keishing505d5b42017-02-21 11:01:54 -060043# Logging URI variables
Sweta Potthuridaf91342017-09-07 12:05:56 -050044BMC_LOGGING_URI = OPENBMC_BASE_URI + 'logging/'
George Keishinga71dd202017-02-24 00:49:40 -060045BMC_LOGGING_ENTRY = BMC_LOGGING_URI + 'entry/'
George Keishing505d5b42017-02-21 11:01:54 -060046
George Keishingab5157b2017-02-09 12:24:25 -060047# Software manager version
Sweta Potthuridaf91342017-09-07 12:05:56 -050048SOFTWARE_VERSION_URI = OPENBMC_BASE_URI + 'software/'
George Keishingab5157b2017-02-09 12:24:25 -060049ACTIVE = 'xyz.openbmc_project.Software.Activation.Activations.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050050READY = 'xyz.openbmc_project.Software.Activation.Activations.Ready'
51INVALID = 'xyz.openbmc_project.Software.Activation.Activations.Invalid'
52ACTIVATING = 'xyz.openbmc_project.Software.Activation.Activations.Activating'
53NOTREADY = 'xyz.openbmc_project.Software.Activation.Activations.NotReady'
54FAILED = 'xyz.openbmc_project.Software.Activation.Activations.Failed'
55
56SOFTWARE_ACTIVATION = 'xyz.openbmc_project.Software.Activation'
George Keishing4af8f362017-10-23 00:26:58 -050057REQUESTED_ACTIVATION = SOFTWARE_ACTIVATION + '.RequestedActivations'
58REQUESTED_ACTIVE = REQUESTED_ACTIVATION + '.Active'
Saqib Khanbb8b63f2017-05-24 10:58:01 -050059REQUESTED_NONE = REQUESTED_ACTIVATION + '.None'
60
61SOFTWARE_PURPOSE = 'xyz.openbmc_project.Software.Version.VersionPurpose'
62VERSION_PURPOSE_HOST = SOFTWARE_PURPOSE + '.Host'
63VERSION_PURPOSE_BMC = SOFTWARE_PURPOSE + '.BMC'
64VERSION_PURPOSE_SYSTEM = SOFTWARE_PURPOSE + '.System'
George Keishingab5157b2017-02-09 12:24:25 -060065
Charles Paul Hofer9f74d3a2017-08-18 09:54:28 -050066# Image Upload Directory Path
67IMAGE_UPLOAD_DIR_PATH = '/tmp/images/'
68
George Keishingc8166ed2017-02-24 03:53:38 -060069# Inventory URI
Sweta Potthuridaf91342017-09-07 12:05:56 -050070HOST_INVENTORY_URI = OPENBMC_BASE_URI + 'inventory/'
George Keishingc8166ed2017-02-24 03:53:38 -060071
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060072# Led URI variable
Sweta Potthuridaf91342017-09-07 12:05:56 -050073LED_GROUPS_URI = OPENBMC_BASE_URI + 'led/groups/'
74LED_PHYSICAL_URI = OPENBMC_BASE_URI + 'led/physical/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060075
George Keishing1059b222017-07-21 13:24:43 -050076# Host control URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050077CONTROL_HOST_URI = OPENBMC_BASE_URI + 'control/host0/'
Rahul Maheshwari7258aec2017-02-02 04:46:38 -060078
George Keishing1c3a9662017-08-11 10:16:36 -050079# Power restore variables.
80POWER_RESTORE_URI = CONTROL_HOST_URI + 'power_restore_policy'
81CONTROL_DBUS_BASE = 'xyz.openbmc_project.Control.'
82
83RESTORE_LAST_STATE = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.Restore'
84ALWAYS_POWER_ON = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOn'
85ALWAYS_POWER_OFF = CONTROL_DBUS_BASE + 'Power.RestorePolicy.Policy.AlwaysOff'
86
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060087# Dump URI variables.
Sweta Potthuridaf91342017-09-07 12:05:56 -050088DUMP_URI = OPENBMC_BASE_URI +'/dump/'
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050089DUMP_ENTRY_URI = DUMP_URI + 'entry/'
Michael Walshe11a1362017-10-19 15:35:26 -050090# The path on the BMC where dumps are stored.
91DUMP_DIR_PATH = "/var/lib/phosphor-debug-collector/dumps/"
Rahul Maheshwari23b18fb2017-08-01 00:30:26 -050092
George Keishing2bd6fc02017-08-10 01:15:16 -050093# Boot progress variables.
94STATE_DBUS_BASE = 'xyz.openbmc_project.State.'
95OS_BOOT_START = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.OSStart'
96OS_BOOT_OFF = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.Unspecified'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -060097OS_BOOT_PCI = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.PCIInit'
98OS_BOOT_SECPCI = STATE_DBUS_BASE + \
99 'Boot.Progress.ProgressStages.SecondaryProcInit'
100OS_BOOT_MEM = STATE_DBUS_BASE + 'Boot.Progress.ProgressStages.MemoryInit'
101OS_BOOT_MOTHERBOARD = STATE_DBUS_BASE + \
102 'Boot.Progress.ProgressStages.MotherboardInit'
103
104# OperatingSystem status variables.
George Keishing2bd6fc02017-08-10 01:15:16 -0500105OS_BOOT_COMPLETE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.BootComplete'
Sweta Potthuri09a3cf92017-12-08 01:19:53 -0600106OS_BOOT_CDROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CDROMBoot'
107OS_BOOT_ROM = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.ROMBoot'
108OS_BOOT_PXE = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.PXEBoot'
109OS_BOOT_CBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.CBoot'
110OS_BOOT_DiagBoot = STATE_DBUS_BASE + 'OperatingSystem.Status.OSStatus.DiagBoot'
George Keishing2bd6fc02017-08-10 01:15:16 -0500111
Rahul Maheshwari85c4d342017-08-09 21:59:30 -0500112# Boot variables.
113BOOT_SOURCE_DEFAULT = 'xyz.openbmc_project.Control.Boot.Source.Sources.Default'
114BOOT_SOURCE_NETWORK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Network'
115BOOT_SOURCE_DISK = 'xyz.openbmc_project.Control.Boot.Source.Sources.Disk'
116BOOT_SOURCE_CDROM = 'xyz.openbmc_project.Control.Boot.Source.Sources.ExternalMedia'
117BOOT_MODE_SAFE = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Safe'
118BOOT_MODE_SETUP = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Setup'
119BOOT_MODE_REGULAR = 'xyz.openbmc_project.Control.Boot.Mode.Modes.Regular'
120
Rahul Maheshwarif486ae82017-10-24 06:10:14 -0500121# Time variables.
122TIME_DBUS_BASE = 'xyz.openbmc_project.Time.'
123BMC_OWNER = TIME_DBUS_BASE + 'Owner.Owners.BMC'
124HOST_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Host'
125SPLIT_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Split'
126BOTH_OWNER = TIME_DBUS_BASE + 'Owner.Owners.Both'
127NTP_MODE = TIME_DBUS_BASE + 'Synchronization.Method.NTP'
128MANUAL_MODE = TIME_DBUS_BASE + 'Synchronization.Method.Manual'
129
George Keishingf1331672018-01-18 05:19:02 -0600130# User manager variable.
131BMC_USER_URI = OPENBMC_BASE_URI + 'user/'
132
George Keishingfbeaecc2016-08-16 05:24:31 -0500133'''
134 QEMU HTTPS variable:
135
136 By default lib/resource.txt AUTH URI construct is as
137 ${AUTH_URI} https://${OPENBMC_HOST}${AUTH_SUFFIX}
138 ${AUTH_SUFFIX} is populated here by default EMPTY else
139 the port from the OS environment
140'''
George Keishingcf910442016-12-08 03:12:59 -0600141
142
George Keishingfbeaecc2016-08-16 05:24:31 -0500143def get_port_https():
144 # defaulted to empty string
145 l_suffix = ''
146 try:
147 l_https_port = os.getenv('HTTPS_PORT')
148 if l_https_port:
George Keishingcf910442016-12-08 03:12:59 -0600149 l_suffix = ':' + l_https_port
George Keishingfbeaecc2016-08-16 05:24:31 -0500150 except:
George Keishingcf910442016-12-08 03:12:59 -0600151 print "Environment variable HTTPS_PORT not set,\
152 using default HTTPS port"
George Keishingfbeaecc2016-08-16 05:24:31 -0500153 return l_suffix
154
George Keishingcf910442016-12-08 03:12:59 -0600155AUTH_SUFFIX = {
156 "https_port": [get_port_https()],
George Keishingfbeaecc2016-08-16 05:24:31 -0500157}
158
159# Update the ':Port number' to this variable
160AUTH_SUFFIX = AUTH_SUFFIX['https_port'][0]
Chris Austenb29d2e82016-06-07 12:25:35 -0500161
162# Here contains a list of valid Properties bases on fru_type after a boot.
George Keishingcf910442016-12-08 03:12:59 -0600163INVENTORY_ITEMS = {
Chris Austenb29d2e82016-06-07 12:25:35 -0500164 "CPU": [
165 "Custom Field 1",
166 "Custom Field 2",
167 "Custom Field 3",
168 "Custom Field 4",
169 "Custom Field 5",
170 "Custom Field 6",
171 "Custom Field 7",
172 "Custom Field 8",
173 "FRU File ID",
174 "Manufacturer",
175 "Name",
176 "Part Number",
177 "Serial Number",
178 "fault",
179 "fru_type",
180 "is_fru",
181 "present",
182 "version",
183 ],
184
185 "DIMM": [
186 "Asset Tag",
187 "Custom Field 1",
188 "Custom Field 2",
189 "Custom Field 3",
190 "Custom Field 4",
191 "Custom Field 5",
192 "Custom Field 6",
193 "Custom Field 7",
194 "Custom Field 8",
195 "FRU File ID",
196 "Manufacturer",
197 "Model Number",
198 "Name",
199 "Serial Number",
200 "Version",
201 "fault",
202 "fru_type",
203 "is_fru",
204 "present",
205 "version",
206 ],
207 "MEMORY_BUFFER": [
208 "Custom Field 1",
209 "Custom Field 2",
210 "Custom Field 3",
211 "Custom Field 4",
212 "Custom Field 5",
213 "Custom Field 6",
214 "Custom Field 7",
215 "Custom Field 8",
216 "FRU File ID",
217 "Manufacturer",
218 "Name",
219 "Part Number",
220 "Serial Number",
221 "fault",
222 "fru_type",
223 "is_fru",
224 "present",
225 "version",
226 ],
227 "FAN": [
228 "fault",
229 "fru_type",
230 "is_fru",
231 "present",
232 "version",
233 ],
234 "DAUGHTER_CARD": [
235 "Custom Field 1",
236 "Custom Field 2",
237 "Custom Field 3",
238 "Custom Field 4",
239 "Custom Field 5",
240 "Custom Field 6",
241 "Custom Field 7",
242 "Custom Field 8",
243 "FRU File ID",
244 "Manufacturer",
245 "Name",
246 "Part Number",
247 "Serial Number",
248 "fault",
249 "fru_type",
250 "is_fru",
251 "present",
252 "version",
253 ],
254 "BMC": [
255 "fault",
256 "fru_type",
257 "is_fru",
258 "manufacturer",
259 "present",
260 "version",
261 ],
262 "MAIN_PLANAR": [
263 "Custom Field 1",
264 "Custom Field 2",
265 "Custom Field 3",
266 "Custom Field 4",
267 "Custom Field 5",
268 "Custom Field 6",
269 "Custom Field 7",
270 "Custom Field 8",
271 "Part Number",
272 "Serial Number",
273 "Type",
274 "fault",
275 "fru_type",
276 "is_fru",
277 "present",
278 "version",
279 ],
280 "SYSTEM": [
281 "Custom Field 1",
282 "Custom Field 2",
283 "Custom Field 3",
284 "Custom Field 4",
285 "Custom Field 5",
286 "Custom Field 6",
287 "Custom Field 7",
288 "Custom Field 8",
289 "FRU File ID",
290 "Manufacturer",
291 "Model Number",
292 "Name",
293 "Serial Number",
294 "Version",
295 "fault",
296 "fru_type",
297 "is_fru",
298 "present",
299 "version",
300 ],
301 "CORE": [
302 "fault",
303 "fru_type",
304 "is_fru",
305 "present",
306 "version",
307 ],
308}