/* * \brief Pin-control service * \author Norman Feske * \date 2021-04-20 */ /* * Copyright (C) 2021 Genode Labs GmbH * * This file is part of the Genode OS framework, which is distributed * under the terms of the GNU Affero General Public License version 3. */ #ifndef _INCLUDE__PIN_CONTROL_SESSION__COMPONENT_H_ #define _INCLUDE__PIN_CONTROL_SESSION__COMPONENT_H_ #include #include #include namespace Pin_control { template class Session_component; template struct Root : Pin::Root, Pin::Direction::OUT> { using Pin::Root, Pin::Direction::OUT>::Root; }; } template class Pin_control::Session_component : public Session_object { private: Pin::Assignment _assignment; using Session_object::label; void _state(Pin::Level level) { if (_assignment.target.constructed()) _assignment.driver.pin_state(_assignment.target->id, level); } public: using Pin_id = ID; Session_component(Entrypoint &ep, Resources const &resources, Label const &label, Diag &diag, Pin::Driver &driver) : Session_object(ep, resources, label, diag), _assignment(driver) { update_assignment(); } /** * Pin_control::Session interface */ void state(bool enabled) override { _state(enabled ? Pin::Level::HIGH : Pin::Level::LOW); } /** * Pin_control::Session interface */ void yield() override { _state(Pin::Level::HIGH_IMPEDANCE); } void update_assignment() { _assignment.update(label(), Pin::Direction::OUT); } }; #endif /* _INCLUDE__PIN_CONTROL_SESSION__COMPONENT_H_ */