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

Compare with Current View Page History

« Previous Version 35 Next »

Draft 3.1

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 PowerPC 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 task may be waiting for data from, receiving data from or delivering data to any given port.

Ports receive and transfer data as packaged in frames. The exact content of a frame depends on the protocol being used. One frame corresponds to one message on the I/O medium 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 incremeneted 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. Each module contains an entry point that creates a factory object for a particular type of channel. Each module is loaded, relocated and bound to the system core before its first use. A factory object returns values of type Channel* which refer to instances of a derived class specific to the channel 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 {

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

    }
}

Header files

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

release/
    rce/
        ppi/
            Channel.hh
            ChannelList.hh
            ChannelType.hh
            Port.hh

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

Channel type numbers

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

enum {
    ETHERNET,
    CONFIG_FLASH,
    etc.
} ChannelType;

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 dump() member function will print informational messages in the system log which show the contents of the channel list.

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 a null pointer if the search fails.

class ChannelList {
public:
    ChannelList() {}
    ~ChannelList() {}
    int numChannels() const;
    Channel* head() const;
    Channel* lookup(unsigned type, unsigned instance) const;
    Channel* lookup(unsigned id) const;
    Channel* lookupByPipe(unsigned pipe) const;
    void dump() 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. Each port is assigned one of the channel's legal port numbers not used by any other port. The client code may request a 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 (firmware) version number.
  • The software version of the channel factory.

The dump() member function produces detailed description of the channel in the system log.

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 instance() const;
    unsigned pipe() const;
    unsigned versionHard() const;
    unsigned versionSoft() const;
    Channel* next() const;
    const char* description() const;
    void dump() const;
};

Port

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

A port queues frames directed to it by the channel that created it. These frames 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; doing so will produce undefined behavior.

A port takes frames given to its send() member function and queues them for output. The frame buffer is NOT reclaimed after sending.

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 contains implementation declarations but these don't appear in public header files. Declarations common to Gen I and II appear at the top level. Generation specific code is inside one of the generation specific nested namesapces.

namespace RCE {

    namespace ppi {

        class  Factory;
        class  Configuration;
        class  Plugin;
        class  Pipe;

	namespace gen1 {
            class Descriptor;
            class Buffer;
            class OpStatus;
            etc.
        }

        namespace gen2 {
            etc.
        }

        etc.
    }

}

Header files

The header files with implementation declarations is private to the ppi project. The directory hierarchy mirrors that of the namespaces.

release/
    rce/
        ppi/
            src/
                Factory.hh
                Configuration.hh
                PpiDef.hh
                PipeDef.hh
                gen1/
                    Descriptor.hh
                    Buffer.hh
                    OpStatus.hh
                    etc.
                gen2/
                    etc.
            etc.

Channel list

We export a static list-building member function. All the instances created by the default 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* head_;

    ChannelList(const ChannelList&);
    ChannelList& operator=(const ChannelList&);
};

Channel

The protected constructor takes a PPI definition object plus other information supplied by the factory code and the system startup code.

From the factory code:

  • name
  • instance
  • versionSoft
  • description

From the startup code:

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

class Channel {
protected:
    Channel(
        Plugin*,
        unsigned id,
        const char* name,
        unsigned instance,
        unsigned pipe,
	unsigned versionSoft,
        const char* description);
    virtual ~Channel();

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

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&);
};

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.

Derived classes contain or find the type name, software version number, recommended number of buffers per channel and the description string, adding these to each class object created.

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

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

Configuration table access

Implementation classes for Gen I and Gen II are derived from this base. PPI definition numbers range from zero to seven. Lane numbers range from zero to 31. Use of a number outside the valid range causes an exception. An unused PPI definition has a type number equal to EMPTY. An unused pipe table entry has a pipe ID equal to EMPTY.

class Configuration {
public:
    Configuration();
    virtual ~Configuration();
    static unsigned EMPTY = 0xffffffff;
    virtual void plugin(unsigned defNum, Plugin&) = 0;
    virtual void pipe(unsigned lane, Pipe&) = 0;
};

Gen I

Frames are still divided into header and payload sections. Each channel manages its own buffer pool.

Location and format of the configuration tables

A data container 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.

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

unit32_t

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

lanes

unit32_t

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

version

unit32_t

The version number for the PPI firmware

maxPorts

unit32_t

The size of the port number space

pibs

unit32_t

PIB usage bitmask

pebs

unit32_t

PEB usage bitmask

ecbs

unit32_t

ECB usage bitmask

flbs

unit32_t

FLB usage bitmask

payloadSize

unit32_t

The maximum size in bytes of a frame payload

headerSize

unit32_t

The size of a 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 0xffffffff indicates an unused element, otherwise the ID of the pipe is given. A pipe ID will probably contain several subfields telling what kind of target the pipe connects to, etc.

Field name

Type

Description

pipeId

unit32_t

Pipe ID number

Class Buffer

A Buffer instance is placed at the beginning of a buffer that will also hold the frame proper. The instances are created at system startup and live until system shutdown.

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

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

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;
private:
    Buffer* link[N];
    Descriptor descr;
    OpStatus status;
    // The frame header starts here.
};

Use case: System startup

For Gen I we need to store the configuration tables and factory code modules in configuration flash. We'll use the core's boot-level flash-reading code to read them during this startup process. That way the configuration flash's channel object factory and channel object will be constructed in the usual way, so there must be a corresponding factory code module in flash. Once startup is complete the boot-level flash code will no longer be used.

  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. Calls ChannelList::build().
    7. Loads and links the application code using the default dynamic linker.
    8. Initializes the network.
      1. Initializes each ethernet channel.
      2. Initializes IP, UDP, TCP and BSD sockets.
      3. Gets a DHCP lease if required.
    9. Calls the application entry point.

ChannelList::build():

  1. Reads each possible PPI defn. and for each non-empty one:
    1. Reads from flash and links the factory code module based on PPI type (if not already done).
    2. Calls the entry point in the factory module that creates channel factories (if not already done).
    3. Uses the resulting factory to create a channel object.
    4. Adds the resulting channel to the list.
    5. Saves the recommended number of buffers for the channel.
  2. Decides how many buffers of what size to allocate for each channel.
  3. For each Channel on the list:
    1. Gives the assigned buffers to the channel and enables it.

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