2020-05-14 13:35:40 +00:00
|
|
|
/*
|
|
|
|
* \brief Connection to Platform service
|
|
|
|
* \author Stefan Kalkowski
|
|
|
|
* \date 2020-05-13
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 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.
|
|
|
|
*/
|
|
|
|
|
2021-12-22 11:04:09 +00:00
|
|
|
#ifndef _INCLUDE__PLATFORM_SESSION__CONNECTION_H_
|
|
|
|
#define _INCLUDE__PLATFORM_SESSION__CONNECTION_H_
|
2020-05-14 13:35:40 +00:00
|
|
|
|
2020-06-30 22:34:22 +00:00
|
|
|
#include <base/attached_dataspace.h>
|
2020-05-14 13:35:40 +00:00
|
|
|
#include <base/connection.h>
|
|
|
|
#include <base/env.h>
|
|
|
|
#include <platform_session/client.h>
|
|
|
|
#include <rom_session/client.h>
|
|
|
|
#include <util/xml_node.h>
|
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
namespace Platform {
|
|
|
|
|
|
|
|
struct Device;
|
|
|
|
struct Connection;
|
|
|
|
}
|
2020-05-14 13:35:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Platform::Connection : public Genode::Connection<Session>,
|
|
|
|
public Client
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
friend class Device; /* 'Device' accesses '_rm' */
|
|
|
|
|
|
|
|
Region_map &_rm;
|
2020-05-14 13:35:40 +00:00
|
|
|
Rom_session_client _rom {devices_rom()};
|
|
|
|
Constructible<Attached_dataspace> _ds {};
|
|
|
|
|
|
|
|
void _try_attach()
|
|
|
|
{
|
|
|
|
_ds.destruct();
|
|
|
|
try { _ds.construct(_rm, _rom.dataspace()); }
|
|
|
|
catch (Attached_dataspace::Invalid_dataspace) {
|
|
|
|
warning("Invalid devices rom dataspace returned!");}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
Connection(Env &env)
|
2021-04-14 15:19:37 +00:00
|
|
|
:
|
|
|
|
Genode::Connection<Session>(env, session(env.parent(),
|
|
|
|
"ram_quota=%u, cap_quota=%u",
|
|
|
|
RAM_QUOTA, CAP_QUOTA)),
|
|
|
|
Client(cap()),
|
|
|
|
_rm(env.rm())
|
|
|
|
{
|
|
|
|
_try_attach();
|
|
|
|
}
|
2020-05-14 13:35:40 +00:00
|
|
|
|
2020-07-17 16:28:06 +00:00
|
|
|
void update()
|
|
|
|
{
|
2021-04-14 15:19:37 +00:00
|
|
|
if (_ds.constructed() && _rom.update() == true)
|
|
|
|
return;
|
|
|
|
|
2020-07-17 16:28:06 +00:00
|
|
|
_try_attach();
|
|
|
|
}
|
|
|
|
|
|
|
|
void sigh(Signal_context_capability sigh) { _rom.sigh(sigh); }
|
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
Capability<Device_interface> acquire_device(Device_name const &name) override
|
2020-05-14 13:35:40 +00:00
|
|
|
{
|
|
|
|
return retry_with_upgrade(Ram_quota{6*1024}, Cap_quota{6}, [&] () {
|
2021-04-14 15:19:37 +00:00
|
|
|
return Client::acquire_device(name); });
|
2020-05-14 13:35:40 +00:00
|
|
|
}
|
|
|
|
|
2021-04-16 13:08:21 +00:00
|
|
|
Capability<Device_interface> acquire_device()
|
|
|
|
{
|
|
|
|
return retry_with_upgrade(Ram_quota{6*1024}, Cap_quota{6}, [&] () {
|
|
|
|
return Client::acquire_single_device(); });
|
|
|
|
}
|
|
|
|
|
2021-04-08 15:44:11 +00:00
|
|
|
Ram_dataspace_capability alloc_dma_buffer(size_t size, Cache cache) override
|
2020-05-14 13:35:40 +00:00
|
|
|
{
|
|
|
|
return retry_with_upgrade(Ram_quota{size}, Cap_quota{2}, [&] () {
|
2021-04-08 15:44:11 +00:00
|
|
|
return Client::alloc_dma_buffer(size, cache); });
|
2020-05-14 13:35:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template <typename FN>
|
|
|
|
void with_xml(FN const & fn)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
if (_ds.constructed() && _ds->local_addr<void const>()) {
|
|
|
|
Xml_node xml(_ds->local_addr<char>(), _ds->size());
|
|
|
|
fn(xml);
|
|
|
|
}
|
|
|
|
} catch (Xml_node::Invalid_syntax) {
|
|
|
|
warning("Devices rom has invalid XML syntax"); }
|
|
|
|
}
|
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
Capability<Device_interface> device_by_type(char const * type)
|
2020-05-14 13:35:40 +00:00
|
|
|
{
|
|
|
|
using String = Genode::String<64>;
|
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
Capability<Device_interface> cap;
|
2020-05-14 13:35:40 +00:00
|
|
|
|
|
|
|
with_xml([&] (Xml_node & xml) {
|
|
|
|
xml.for_each_sub_node("device", [&] (Xml_node node) {
|
2021-04-14 15:19:37 +00:00
|
|
|
|
2020-05-14 13:35:40 +00:00
|
|
|
/* already found a device? */
|
2021-04-14 15:19:37 +00:00
|
|
|
if (cap.valid())
|
|
|
|
return;
|
2020-05-14 13:35:40 +00:00
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
if (node.attribute_value("type", String()) != type)
|
|
|
|
return;
|
2021-04-15 12:30:15 +00:00
|
|
|
|
2021-04-14 15:19:37 +00:00
|
|
|
Device_name name = node.attribute_value("name", Device_name());
|
|
|
|
cap = acquire_device(name);
|
2020-05-14 13:35:40 +00:00
|
|
|
});
|
|
|
|
if (!cap.valid()) {
|
2021-04-15 12:30:15 +00:00
|
|
|
error(__func__, ": type=", type, " not found!");
|
2020-05-14 13:35:40 +00:00
|
|
|
error("device ROM content: ", xml);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return cap;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-12-22 11:04:09 +00:00
|
|
|
#endif /* _INCLUDE__PLATFORM_SESSION__CONNECTION_H_ */
|