-- -- Copyright (C) 2016-2017 secunet Security Networks AG -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- with HW.DbC_Config; private package HW.DbC.DMA_Buffers is Base : constant := DbC_Config.DMA_BASE; -- First 64 * 4KiB are reserved for the transferred data. -- Transfer_Rings_Base : constant := Base + 16#0004_0000#; -- Event_Ring_Base : constant := Base + 16#0004_0800#; -- DbC_Context_Base : constant := Base + 16#0004_0c00#; -- Descriptor_Strings_Base : constant := Base + 16#0004_0cc0#; -- Event_Ring_Segment_Table_Base : constant := Base + 16#0004_0d40#; end HW.DbC.DMA_Buffers; -- vim: set ts=8 sts=3 sw=3 et: