/openbmc/openpower-hw-diags/test/ |
H A D | test-end2end.cpp | 11 namespace attn namespace 28 attn::Config attnConfig; in main() 34 attn::attnHandler(&attnConfig); in main() 52 std::vector<attn::Attention> attentions; in main() 54 attentions.emplace_back(attn::Attention::AttentionType::Special, in main() 55 attn::handleSpecial, target, &attnConfig); in main() 57 attentions.emplace_back(attn::Attention::AttentionType::Checkstop, in main() 58 attn::handleCheckstop, target, &attnConfig); in main() 60 attentions.emplace_back(attn::Attention::AttentionType::Vital, in main() 61 attn::handleVital, target, &attnConfig); in main() [all …]
|
H A D | test-ti-handler.cpp | 27 attn::TiDataArea* tiData = (attn::TiDataArea*)tiInfo; in TEST() 30 attn::parsePhypOpalTiInfo(tiMap, tiData); in TEST() 98 attn::TiDataArea* tiData = nullptr; in TEST() 102 tiData = (attn::TiDataArea*)tiInfo; in TEST() 105 attn::parseHbTiInfo(tiMap, tiData); in TEST()
|
/openbmc/openpower-hw-diags/ |
H A D | cli.cpp | 20 void parseConfig(char** i_begin, char** i_end, attn::Config* o_config) in parseConfig() 46 o_config->clearFlag(attn::enVital); in parseConfig() 50 o_config->setFlag(attn::enVital); in parseConfig() 59 o_config->clearFlag(attn::enCheckstop); in parseConfig() 63 o_config->setFlag(attn::enCheckstop); in parseConfig() 72 o_config->clearFlag(attn::enTerminate); in parseConfig() 76 o_config->setFlag(attn::enTerminate); in parseConfig() 85 o_config->clearFlag(attn::enBreakpoints); in parseConfig() 89 o_config->setFlag(attn::enBreakpoints); in parseConfig() 99 o_config->setFlag(attn::dfltTi); in parseConfig() [all …]
|
H A D | main_nl.cpp | 61 attn::DumpParameters dumpParameters; in main() 70 attn::Config attnConfig; // default config in main() 75 attn::attnHandler(&attnConfig); // handle pending attentions in main() 77 attn::attnDaemon(&attnConfig); // start daemon in main()
|
H A D | main.cpp | 68 attn::DumpParameters dumpParameters; in main() 76 attn::Config attnConfig; in main() 77 attn::attnHandler(&attnConfig); in main()
|
H A D | listener.cpp | 25 attn::attnDaemon((attn::Config*)i_config); in threadGpioMon() 45 attn::Config attnConfig; in threadListener()
|
H A D | cli.hpp | 40 void parseConfig(char** i_begin, char** i_end, attn::Config* o_config);
|
/openbmc/linux/Documentation/sound/cards/ |
H A D | audigy-mixer.rst | 276 * 0 - mono, A destination attn, default 255 (no attenuation) 277 * 1 - mono, B destination attn, default 255 (no attenuation) 278 * 2 - mono, C destination attn, default 0 (mute) 279 * 3 - mono, D destination attn, default 0 (mute) 280 * 4 - mono, E destination attn, default 0 (mute) 281 * 5 - mono, F destination attn, default 0 (mute) 282 * 6 - mono, G destination attn, default 0 (mute) 283 * 7 - mono, H destination attn, default 0 (mute) 284 * 8 - left, A destination attn, default 255 (no attenuation) 285 * 9 - left, B destination attn, default 0 (mute) [all …]
|
H A D | sb-live-mixer.rst | 295 * 0 - mono, A destination attn, default 255 (no attenuation) 296 * 1 - mono, B destination attn, default 255 (no attenuation) 297 * 2 - mono, C destination attn, default 0 (mute) 298 * 3 - mono, D destination attn, default 0 (mute) 299 * 4 - left, A destination attn, default 255 (no attenuation) 300 * 5 - left, B destination attn, default 0 (mute) 301 * 6 - left, C destination attn, default 0 (mute) 302 * 7 - left, D destination attn, default 0 (mute) 303 * 8 - right, A destination attn, default 0 (mute) 304 * 9 - right, B destination attn, default 255 (no attenuation) [all …]
|
/openbmc/openpower-hw-diags/attn/ |
H A D | attn_main.cpp | 3 namespace attn namespace 31 std::vector<std::unique_ptr<attn::AttnMonitor>> gpios; in attnDaemon() 33 std::make_unique<attn::AttnMonitor>(line, config, io, i_config)); in attnDaemon()
|
H A D | bp_handler.hpp | 3 namespace attn namespace
|
H A D | vital_handler.hpp | 3 namespace attn namespace
|
H A D | attn_main.hpp | 5 namespace attn namespace
|
H A D | attn_dump.hpp | 4 namespace attn namespace
|
H A D | attn_dbus.hpp | 8 namespace attn namespace
|
H A D | attn_handler.hpp | 7 namespace attn namespace
|
H A D | attn_config.hpp | 4 namespace attn namespace
|
H A D | attn_logging.hpp | 10 namespace attn namespace
|
H A D | attn_common.hpp | 5 namespace attn namespace
|
/openbmc/qemu/hw/pci/ |
H A D | shpc.c | 290 static bool shpc_slot_is_off(uint8_t state, uint8_t power, uint8_t attn) in shpc_slot_is_off() argument 296 uint8_t state, uint8_t power, uint8_t attn) in shpc_slot_command() argument 321 if (attn == SHPC_LED_NO) { in shpc_slot_command() 322 attn = old_attn; in shpc_slot_command() 325 shpc_set_status(shpc, slot, attn, SHPC_SLOT_ATTN_LED_MASK); in shpc_slot_command() 346 shpc_led_state_to_str(attn), in shpc_slot_command() 352 shpc_slot_is_off(state, power, attn)) in shpc_slot_command() 370 uint8_t attn; in shpc_command() local 386 attn = (code & SHPC_SLOT_ATTN_LED_MASK) >> SHPC_SLOT_ATTN_LED_SHIFT; in shpc_command() 387 shpc_slot_command(d, target, state, power, attn); in shpc_command()
|
/openbmc/linux/Documentation/devicetree/bindings/input/touchscreen/ |
H A D | eeti.txt | 9 - attn-gpios: A handle to a GPIO to check whether interrupt is still 28 attn-gpios = <&gpio 123 GPIO_ACTIVE_HIGH>;
|
/openbmc/ipmitool/contrib/ |
H A D | ipmievd.init.suse | 178 echo "${attn} Use try-restart ${done}(LSB)${attn} rather than condrestart ${warn}(RH)${norm}"
|
/openbmc/openpower-hw-diags/analyzer/ |
H A D | analyzer_main.cpp | 98 uint32_t analyzeHardware(AnalysisType i_type, attn::DumpParameters& o_dump) in analyzeHardware() 214 o_dump.dumpType = attn::DumpType::Hardware; in analyzeHardware()
|
H A D | analyzer_main.hpp | 46 uint32_t analyzeHardware(AnalysisType i_type, attn::DumpParameters& o_dump);
|
/openbmc/openpower-hw-diags/attn/pel/ |
H A D | pel_section.hpp | 5 namespace attn namespace
|