2018-07-31 14:39:37 +02:00
|
|
|
/*
|
|
|
|
|
* nextpnr -- Next Generation Place and Route
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2018 David Shah <david@symbioticeda.com>
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef ECP5_GFX_H
|
|
|
|
|
#define ECP5_GFX_H
|
|
|
|
|
|
|
|
|
|
#include "nextpnr.h"
|
|
|
|
|
|
|
|
|
|
NEXTPNR_NAMESPACE_BEGIN
|
|
|
|
|
|
2019-10-06 11:26:56 +02:00
|
|
|
const float switchbox_x1 = 0.51;
|
|
|
|
|
const float switchbox_x2 = 0.90;
|
|
|
|
|
const float switchbox_y1 = 0.51;
|
|
|
|
|
const float switchbox_y2 = 0.90;
|
|
|
|
|
|
|
|
|
|
const float slice_x1 = 0.92;
|
|
|
|
|
const float slice_x2 = 0.94;
|
|
|
|
|
const float slice_y1 = 0.71;
|
|
|
|
|
const float slice_y2 = 0.745;
|
|
|
|
|
const float slice_pitch = 0.04;
|
|
|
|
|
|
|
|
|
|
const float io_cell_v_x1 = 0.76;
|
|
|
|
|
const float io_cell_v_x2 = 0.95;
|
|
|
|
|
const float io_cell_v_y1 = 0.05;
|
|
|
|
|
const float io_cell_v_y2 = 0.15;
|
|
|
|
|
const float io_cell_v_pitch = 0.125;
|
|
|
|
|
|
|
|
|
|
const float io_cell_h_x1 = 0.05;
|
|
|
|
|
const float io_cell_h_x2 = 0.14;
|
|
|
|
|
const float io_cell_h_y1 = 0.05;
|
|
|
|
|
const float io_cell_h_y2 = 0.24;
|
|
|
|
|
const float io_cell_h_pitch = 0.125;
|
2018-07-31 14:39:37 +02:00
|
|
|
|
2019-10-06 17:59:44 +02:00
|
|
|
enum GfxTileWireId
|
|
|
|
|
{
|
|
|
|
|
TILE_WIRE_NONE,
|
|
|
|
|
|
|
|
|
|
TILE_WIRE_D1_SLICE,
|
|
|
|
|
TILE_WIRE_C1_SLICE,
|
|
|
|
|
TILE_WIRE_B1_SLICE,
|
|
|
|
|
TILE_WIRE_A1_SLICE,
|
|
|
|
|
TILE_WIRE_D0_SLICE,
|
|
|
|
|
TILE_WIRE_C0_SLICE,
|
|
|
|
|
TILE_WIRE_B0_SLICE,
|
|
|
|
|
TILE_WIRE_A0_SLICE,
|
|
|
|
|
TILE_WIRE_DI1_SLICE,
|
|
|
|
|
TILE_WIRE_DI0_SLICE,
|
|
|
|
|
TILE_WIRE_M1_SLICE,
|
|
|
|
|
TILE_WIRE_M0_SLICE,
|
|
|
|
|
TILE_WIRE_FXBA_SLICE,
|
|
|
|
|
TILE_WIRE_FXAA_SLICE,
|
|
|
|
|
TILE_WIRE_WRE0_SLICE,
|
|
|
|
|
TILE_WIRE_WCK0_SLICE,
|
|
|
|
|
TILE_WIRE_CE0_SLICE,
|
|
|
|
|
TILE_WIRE_LSR0_SLICE,
|
|
|
|
|
TILE_WIRE_CLK0_SLICE
|
|
|
|
|
};
|
|
|
|
|
|
2018-07-31 14:39:37 +02:00
|
|
|
NEXTPNR_NAMESPACE_END
|
|
|
|
|
|
|
|
|
|
#endif
|