mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
f2a627c107
The new interfaces are meant to gradually replace the existing Gpio_session interface. - Each session refers to a single pin. - The session types distiguish the direction of the signal as input or output. - Pin coordinates can be selected via session labels. - GPIO interrupts are covered by the regular IRQ session interface. The interfaces are accompanied by framework utilities and interfaces: - os/pin_driver.h - pin_control_session/component.h - pin_state_session/component.h These headers relieve GPIO drivers from implementing boilerplate code by providing device-agnostic portions. The A64 pio driver serves as reference for using those utilities. https://github.com/nfeske/genode-allwinner/tree/master/src/drivers/pin/a64 Fixes #4315
71 lines
1.5 KiB
C++
71 lines
1.5 KiB
C++
/*
|
|
* \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 <pin_control_session/pin_control_session.h>
|
|
#include <base/session_object.h>
|
|
#include <os/pin_driver.h>
|
|
|
|
namespace Pin_control {
|
|
|
|
template <typename> class Session_component;
|
|
|
|
template <typename ID>
|
|
struct Root : Pin::Root<Session_component<ID>, Pin::Direction::OUT>
|
|
{
|
|
using Pin::Root<Session_component<ID>, Pin::Direction::OUT>::Root;
|
|
};
|
|
}
|
|
|
|
|
|
template <typename ID>
|
|
class Pin_control::Session_component : public Session_object<Session>
|
|
{
|
|
private:
|
|
|
|
Pin::Assignment<ID> _assignment;
|
|
|
|
using Session_object<Session>::label;
|
|
|
|
public:
|
|
|
|
using Pin_id = ID;
|
|
|
|
Session_component(Entrypoint &ep, Resources const &resources,
|
|
Label const &label, Diag &diag, Pin::Driver<ID> &driver)
|
|
:
|
|
Session_object<Session>(ep, resources, label, diag),
|
|
_assignment(driver)
|
|
{
|
|
update_assignment();
|
|
}
|
|
|
|
/**
|
|
* Pin_control::Session interface
|
|
*/
|
|
void state(bool enabled) override
|
|
{
|
|
if (_assignment.target.constructed())
|
|
_assignment.driver.pin_state(_assignment.target->id, enabled);
|
|
}
|
|
|
|
void update_assignment()
|
|
{
|
|
_assignment.update(label(), Pin::Direction::OUT);
|
|
}
|
|
};
|
|
|
|
#endif /* _INCLUDE__PIN_CONTROL_SESSION__COMPONENT_H_ */
|