You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 43 Next »

Draft 3.3

Concepts

RCE code is divided into three layers:

  1. The core is the same for all RCEs of a given generation. It contains low-level hardware management code, RTEMS, generic C/C++ support libraries, etc.
  2. The protocol plug-in (PPI) handling code.
  3. Application code which is entered only after the first two layers are fully initialized.

Each layer's code is stored independently somewhere on the RCE, e.g., in configuration flash.

The low-level interface to an RCE's protocol plug-ins uses abstractions called ports, frames, frame buffers, channels, lanes, pipes and factories.

A port is the RCE end of a two-way communications link similar in concept to a BSD socket. Ports are globally visible but not MT-safe; at a given time at most one thread may be waiting for data from, receiving data from or delivering data to any given port.

Ports receive and transfer data packaged in frames. The exact content of a frame depends on the protocol being used. One frame corresponds to one I/O message and is delivered in a single frame buffer. In other words all ports implement datagram rather than byte-stream protocols. It's up to higher-level software such as a TCP stack to provide any operations that cross frame boundaries. Each port contains two queues of frames; one for frames which have arrived and have not yet been consumed by the application, the other for frames generated by the application but which have not yet been transmitted.

In addition to a frame, a frame buffer contains administrative information that is private to the implementation of the plug-in interface; the user gives and takes only void* pointers to the beginning of the frame proper. Information such as the size of the frame has to be fixed by the protocol or has to be included in the frame itself.

A channel represents a hardware I/O engine capable of DMA to and from system RAM, i.e., a protocol plug-in of a particular type. An RCE has at most eight channels (which limit derives from the limit on the number of plugins). Most channels will make use of one or more of the Multi-Gigabit Transceiver modules (lanes) available in firmware, though some may simply offer access to on-board resources such as DSPs. Each channel has its own port space where each port is identified by a 16-bit unsigned integer. Each port represents a different source and/or sink of data such as a UDP port or a section of Petacache memory. The size of the port number space on a channel depends on the channel type and may be as low as one.

Every port object created is allocated a port number from its channel's space but no two ports of a channel may have the same port number. Each incoming frame must contain information from which a port number can be derived. If it doesn't, or if it specifies a port number that is invalid or not allocated to a port object, then the channel's lost-frame count is incremented and the frame is recycled.

All the lanes (if any) of a given channel map to one pipe, which represents some on-board or off-board target.

Each type of channel has both an official (unsigned) number and an official short name such as "eth" or "config". Channels that differ only in the number of lanes they use, e.g., 10 Gb/s ethernet (4) and a slower ethernet (1) have the same channel type, in this case "eth".

PPI-handling code is held in relocatable modules recorded on the RCE. A module for plugin type FOO holds:

  • An implementation of a class FooChannel derived from Channel.
  • An implementation of class FooFactory derived from Factory. A FooFactory creates FooChannel instances, returning Channel* values.
  • An entry point that creates an instance of FooFactory, returning a Factory* value.

Each module is loaded, relocated and bound to the system core before its first use. The core code knows only the abstract base classes Factory and Channel, not the derived classes specific to plugin type.

Both PPI hardware and the channel factory modules both have version numbers which will allow some measure of compatibility checking. Any incompatibility detected will will cause a fatal exception to be thrown during system startup.

Interface

The C++ class declarations given here contain only those members intended for the user. Whether a method is virtual is not specified, nor are friend declarations shown; these are considered implementation details.

Namespaces

All the public declarations for the interface are in namespace RCE::ppi, as shown in this pseudo-C++ code:

namespace RCE {

    namespace ppi {

        static const unsigned MAX_PLUGINS =  8;
        static const unsigned MAX_LANES   = 32;

        class Channel;
        class ChannelList;
        enum  ChannelType;
        class Port;
    }
}

Header files

All the header files for the public interface are the top level of package ppi of project rce.

release/
    rce/
        ppi/
            constants.hh

            Channel.hh
            ChannelList.hh
            ChannelType.hh
            Port.hh

Note that in the repository both rce and release appear at the top level.

Universal constants

All RCEs whether of Gen I or Gen II each have the same limits on the number of plugin instances (MAX_PLUGINS) and on the number of lanes (MAX_LANES).

Channel type enumeration

The numbers are members of an enumeration assigned by the DAQ project.

enum {
    CONFIG_FLASH,
    ETHERNET,
    PGP1,
    PGP2,
    etc.,
    INVALID_CHANNELTYPE
} ChannelType;

The header file also contains a specialization of the template RCE::service::EnumInfo which allows one to use the function templates emin<>(), emax<>(), ecount<>(), evalid<>(), enext<>(), eprev<>() and estr<>():

emin<ChannelType>() == CONFIG_FLASH
emax<ChannelType>() == ChannelType(INVALID_CHANNELTYPE - 1)
ecount<ChannelType>() == int(INVALID_CHANNELTYPE)
evalid(x) is true for all from emin() to emax() inclusive, else false
enext(emax()) == eprev(emin()) == INVALID_CHANNELTYPE
enext(CONFIG_FLASH) == ETHERNET, etc.
eprev(ETHERNET) == CONFIG_FLASH, etc.
estr(CONFIG_FLASH) == "CONFIG_FLASH", etc.
estr(x) == "**INVALID**" if and only if evalid(x) is false

ecount<>() can't be used as a dimension for static arrays since the compiler considers it to be non-constant; in that case use EnumInfo<ChannelType>::count.

Channel list

This class is a Borg-type singleton; the constructor makes a stateless object whose member functions access the true (shared) state defined elsewhere. The destructor destroys these stateless objects but does not touch the true state information. You can therefore just use the constructor whenever you need to access the One True List, e.g., ChannelList().head().

You can get a count of the number of channels or the first channel on the list (the list can't be empty). The report() member function will print informational messages in the system log which show the contents of the channel list in brief form, one line per channel.

The location and form of the system log depends on how the system logging package was initialized at application startup. Client code making log entries is not aware of this initialization.

A particular channel may be looked up in several different ways:

  • By its global ID number, assigned in sequence starting from zero as channels are created.
  • By its type number and the creation sequence number within the type, e.g., (ETHERNET,0), (ETHERNET,1), etc.
  • By the number of the pipe the channel is connected to.

Lookup methods return the null pointer if the search fails.

class ChannelList {
public:
    ChannelList() {}
    ~ChannelList() {}
    int numChannels() const;
    Channel* head() const;
    Channel* lookup(ChannelType type, unsigned typeSeq) const;
    Channel* lookup(unsigned id) const;
    Channel* lookupByPipe(unsigned pipe) const;
    void report() const;
);

Channel

A channel object represents a particular instance of a protocol plug-in. Each channel object is created at system startup. Channel objects live until system shutdown and may not be copied or assigned.

Each channel creates and destroys Port objects on demand. During its lifetime each Port object has exclusive use of one of the channels port numbers; the port number becomes available again once the Port object is deallocated. The client code may request a specific, unused port number for the type of channel, e.g., a well-known TCP port number. The client may also allow the channel to assign a number not currently in use by any Port.

Every channel object is a member of the linked list accessed though class ChannelList and may not be removed from the list. Use the next() member function to iterate over the list.

A short name for the type and a short description of the channel are also provided.

A "lost" counter is provided which counts the number of incoming frames that were discarded, for whatever reason, instead of being queued in a port.

Other information provided:

  • The ID of the pipe associated with the channel.
  • The hardware version number of the associated plugin.
  • The software version number of the associated plugin module.

The report() member function produces detailed multi-line description of the channel in the system log, including all platform-specific information.

class Channel {
public:
    Port* allocate(int portNum);
    Port* allocate();
    void deallocate(Port *);
    unsigned lost() const;
    unsigned id() const;
    unsigned type() const;
    const char* name() const;
    unsigned typeSequence() const;
    unsigned pipe() const;
    unsigned versionHard() const;
    unsigned versionSoft() const;
    Channel* next() const;
    const char* description() const;
    void report() const;
};

Port

Each Port object is created by a channel and is assigned a unique ID in the channel's port number space.

Incoming frames on the associated channel may be waited for and retrieved using the wait() member function. Client code will normally keep a frame for a short time then give it back to the port they got it from using the port's giveBack() member function. It's an error to try to give back a frame to a port which didn't produce it; the results of doing so will be unpredictable.

A port takes frames given to its send() member function and queues them for output. The frame buffer is NOT reclaimed after sending nor does the plugin interface tell you when it's safe to re-use the buffer; that's up to the message protocol. For example, the PGP1 protocol used with Petacache flash memory allows the client to put an arbitrary transaction ID into every message sent, and every message produces a response incorporating the original transaction ID. The client can then track pending transactions and the send buffers associated with them.

class Port {
public:
    unsigned id() const;
    void* wait();
    void giveBack(void *frame);
    void send(void *frame);
};

Implementation

General

Bit numbering: Bit zero is the least significant bit of a value (contrary to the convention in PowerPC documents).

Namespaces

The namespace RCE::ppi also contains implementation declarations but these don't appear in public header files but in package private headers (see below). Some names are declared in the same way for both Gen I and Gen II, others look different depending on the platform and some may not appear at all on a given platform.

Header files

All implementation code (including inline function definitions) appears somwhere under the directory rce/ppi/src/. Generic code appears directly in src/ while platform specific code will appear in subdirectories gen1/, gen2/, and possibly i86-linux/. Unit test code is in rce/ppi/test/ which has the same substructure as src/. Some implementation is partly generic and partly platform specific so a filename may appear in several places.

release/
    rce/
        ppi/
            src/
                Channel-inl.hh
                Channel.cc
                ChannelList-inl.hh
                ChannelList.cc
                Configuration.hh
                Factory.hh
                Port-inl.hh
                Port.cc
                gen1/
                    ChannelList.cc
                    Configuration.cc
                    ConfigurationData.hh
                    Factory.cc
                    Pipe.hh
                    Plugin.hh
                    etc.
                gen2/
                    etc.
                etc.
            test/
                testPpi.cc
                gen1/
                    testPpi.cc
            etc.

Channel list

We export a static list-building member function void build() whose implementation depends on the platform.. All the instances of ChannelList created by the constructor are empty; the non-static member functions all use the static head-of-list pointer and never use this.

class ChannelList {
public:
    static void build();

private:
    static Channel* m_head;
    static int m_numChannels;
};

Channel

The protected constructor takes a PPI definition object plus other information supplied by the factory code and the system startup code. There are also protected member functions to increment the "lost" count and to set the "next" pointer (even though ChannelList is a friend we prefer to use an accessor for the "next" pointer).

From the factory code:

  • name
  • instance
  • versionSoft
  • description

From the startup code:

  • An instance of Plugin
  • versionHard
  • id
  • pipe
class Plugin;

class Channel {
protected:
    friend class ChannelList;
    Channel(
        Plugin*,
        unsigned id,
        ChannelType type,
        const char* name,
        unsigned typeSequence,
        unsigned pipe,
        unsigned versionHard,
	unsigned versionSoft,
        const char* description);
    virtual ~Channel() = 0;
    void incLost();
    void next(Channel*);

private:
    Channel(const Channel &);
    Channel& operator=(const Channel &);

private:
    Plugin*     m_plugin;
    unsigned    m_lost;
    Channel*    m_next;
    unsigned    m_id;
    ChannelType m_type;
    const char* m_name;
    unsigned    m_typeSequence;
    unsigned    m_pipe;
    unsigned    m_versionHard;
    unsigned    m_versionSoft;
    const char* m_description;
};

The name and description string pointers must refer to non-automatic storage since the object must remain valid until shutdown.

Port

The first private constructor stores the given Channel* and port number.

class Port {
private:
    friend class Channel;
    Port(Channel*, unsigned portNum);
    ~Port();
    Port(const Port&);
    Port& operator=(const Port&);
private:
    Channel* m_channel;
    unsigned m_id;
};

Channel factory

The abstract base class for objects that manufacture Channel instances. Channel factories are created during system startup and last until system shutdown. Assignment or copying of instances is forbidden.

The derived classes use the protected constructor to save the channel type name, software version number, recommended number of reception buffers per channel and the channel description string.

class Factory {
public:
    ChannelType type() const;
    const char* name() const;
    unsigned versionSoft() const;
    unsigned numBuffersAdvised() const;
    const char* description() const;
    virtual Channel* createChannel(
            Plugin*,
	    unsigned channelId,
            unsigned pipeId);
    ) = 0;

protected:
    Factory(
        unsigned type,
	const char* name,
	unsigned versionSoft,
	unsigned numBuffersAdvised,
	const char *description
    );
    virtual ~Factory() = 0;
};

Plugin software modules

Each module's entry point is named rce_appmain; this symbol is recognized by the module build system which places its value in the transfer address slot of the module's ELF header. The prototype of the entry point function is

extern "C" Factory* rce_appmain();

The system init code uses placement new to construct an instance of PluginModule atop the image of the module then calls the run() member function to obtain the factory object.

class PluginModule: public RCE::ELF::Module {
public:
  typedef Factory* (*EntryPoint)();
  Factory* run();
};

The module's entry point is run directly without creating a new thread
(otherwise we'd need synchronization in order to wait for the factory
to be produced).

Configuration table access

The same declaration is used for both Gen I and Gen II since it uses only references to classes Pipe and Plugin. The implementations are quite different, however.

static unsigned EMPTY = 0xffffffff;

class Configuration {
public:
    Configuration();
    ~Configuration();
    void plugin(unsigned defNum, Plugin&);
    void pipe(unsigned lane, Pipe&);
};

Gen I

Frames are still divided into header and payload sections. Each channel manages its own pool of reception (import) buffers.

Location and format of the configuration tables

Configuration container zero in the configuration flash contains tables of information about the hardware and firmware; this information can't be gotten directly from the hardware and firmware.

To make alignment easier we use 32-bit fields wherever possible, even for 16-bit quantities such as port numbers.

The plugin table will come first, at the beginning of the container, immediately followed by the pipe table and the ethernet MAC table.

Plugin table

The plugin table will have eight array elements, one for each possible PPI in the system. An element is considered unused if the type field contains 0xffffffff (EMPTY) in which case all the other members of that element are zero.

Field name

Type

Description

type

uint32_t

The type number of the resulting Channel object as given in the header ChannelTypes.hh

lanes

uint32_t

Lane usage bitmask; bit N is set to indicate that lane N is used by this PPI

version

uint32_t

The version number for the PPI firmware

maxPorts

uint32_t

The size of the port number space

pibs

uint32_t

PIB usage bitmask

pebs

uint32_t

PEB usage bitmask

ecbs

uint32_t

ECB usage bitmask

flbs

uint32_t

FLB usage bitmask

importPayloadSize

uint32_t

The maximum size in bytes of an import frame payload

importHeaderSize

uint32_t

The size of an import frame header

exportPayloadSize

uint32_t

The maximum size in bytes of an export frame payload

exportHeaderSize

uint32_t

The size of an export frame header

Pipe table

In order to discover which pipe a PPI uses will you take the lowest lane number used by the PPI and use it to index the pipe table, which has 32 array elements. A pipe ID of EMPTY indicates an unused element, otherwise the ID of the pipe is given. A pipe ID may contain subfields telling what the pipe is connected to or it may be a simple index into a further table that gives such information.

Field name

Type

Description

pipeId

uint32_t

Pipe ID number

Ethernet MAC table

Ethernet plugins for Gen I RCEs need to have their MAC addresses supplied to them. System init code also needs to know which ethernet interfaces need to used DHCP in order to obtain IP numbers. The table has eight array elements with each unused element having a MAC address of 0xffffffff ffffffff. The information is read from configuration flash and stored in main memory from whence an API yet to be defined will retrieve it.

Field name

Type

Description

mac

uint64_t

Ethernet MAC address, right justified

pipeId

uint32_t

Pipe ID number

useDhcp

uint32_t

1 if DHCP is to be used, else 0

Storage of plugin software modules

Only a few different types of protocol plugins are found on Gen I systems so each type is assigned to a fixed Configuration container:

Plugin type

Container name

ETHERNET

1

PGP1

2

PGP2

3

future expansion

4-10

Later a container may be used for CONFIG_FLASH, if we ever manage to make a usable wrapper for the FCI package makes it look like another plugin.

Class Buffer

Frames buffers for imports will be allocated by the system startup code; those for exports will be allocated by the client software. Before a frame buffer may be used for either import or export an instance of class Buffer must be created at the beginning of the buffer using placement new.

A Buffer contains regions of fixed size used in the management of the frame itself and its buffer:

  • The firmware's in-memory descriptor. The firmware TDE for the frame points to the descriptor.
  • Status. The firmware writes operation completion status here.
  • One or more links used to make singly-linked lists.

Immediately following the end of the Buffer we have first the frame's header and then its payload.

The links, descriptor and status areas have the same sizes for all channel types.

The descriptor must begin on a 64-byte boundary; for ease of layout the entire buffer also has that alignment. The buffer should also begin on a cache line boundary in order to reduce cache thrashing but since a cache line is only 32 bytes long this requirement is already met.

Buffer instances may not be copied or assigned.

class Buffer {
public:
    Buffer(void *bufferAddress);
    Buffer* link(unsigned linkNum) const;
    const Descriptor& descriptor() const;
    const OpStatus& status() const;
    char* header() const;
    char* payload() const;

    enum {NUM_LINKS = 4};

private:
    Descriptor m_descr;
    OpStatus m_status;
    Buffer* m_link[NUM_LINKS];
};

Use case: System startup

  1. Boot code:
    1. Loads and starts the system core.
  2. System core
    1. Initializes the CPU.
    2. Initializes RTEMS.
    3. Initializes any extra C++ support.
    4. Sets up the MMU's TLB and enables the MMU.
    5. Creates the default instance of the dynamic linker.
    6. Reads Configuration container zero.
    7. Saves the ethernet MAC table for later use.
    8. Reads, links and runs the required plugin modules, creating the Factory objects.
    9. Creates the import buffer pools for all plugins (using information supplied by the factories).
    10. Uses the Factories to create all required Channel objects (the Factories know how to find the buffer pools).
    11. Initializes the network (uses the MAC table).
      1. Initializes each ethernet channel.
      2. Initializes IP, UDP, TCP and BSD sockets.
      3. Gets any required DHCP leases.
    12. Loads and links the application code using the default dynamic linker.
    13. Calls the application entry point.

Use case: Frame import

TBD.

Use case: Frame export

TBD.

Gen II

Location of the configuration tables

The PpiDefs and PipeDefs table entries will be obtained directly from the hardware via DCR registers.

Protocol plug-ins.

Protocol plug-ins will no longer be implemented using PIC blocks.

Frames

The old division of frames into header and payload will no longer be made. All input frame buffers for all channels will be held in a single free-list maintained by the firmware; when asked for a buffer of a certain size it allocates the one whose size is the best match.

  • No labels