2020-08-23 09:00:17 -04:00
|
|
|
#
|
|
|
|
# This file is part of LiteX-Boards.
|
|
|
|
#
|
lambdaconcept_ecpix5: Add initial Video support at 640x480 (with Terminal/Framebuffer).
I2C intialization code adapted from https://github.com/ultraembedded/ecpix-5.
Tested with:
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-terminal --build --load
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-framebuffer --build --load
__ _ __ _ __
/ / (_) /____ | |/_/
/ /__/ / __/ -_)> <
/____/_/\__/\__/_/|_|
Build your hardware, easily!
(c) Copyright 2012-2022 Enjoy-Digital
(c) Copyright 2007-2015 M-Labs
BIOS built on Mar 8 2022 15:34:22
BIOS CRC passed (c7fe9ecd)
Migen git sha1: ac70301
LiteX git sha1: 7ebc7625
--=============== SoC ==================--
CPU: FireV-STANDARD @ 75MHz
BUS: WISHBONE 32-bit @ 4GiB
CSR: 32-bit data
ROM: 128KiB
SRAM: 8KiB
L2: 8KiB
SDRAM: 524288KiB 16-bit @ 300MT/s (CL-6 CWL-5)
--========== Initialization ============--
Initializing SDRAM @0x40000000...
Switching SDRAM to software control.
Read leveling:
m0, b00: |01110000| delays: 02+-01
m0, b01: |00000000| delays: -
m0, b02: |00000000| delays: -
m0, b03: |00000000| delays: -
best: m0, b00 delays: 02+-01
m1, b00: |01110000| delays: 02+-01
m1, b01: |00000000| delays: -
m1, b02: |00000000| delays: -
m1, b03: |00000000| delays: -
best: m1, b00 delays: 02+-01
Switching SDRAM to hardware control.
Memtest at 0x40000000 (2.0MiB)...
Write: 0x40000000-0x40200000 2.0MiB
Read: 0x40000000-0x40200000 2.0MiB
Memtest OK
Memspeed at 0x40000000 (Sequential, 2.0MiB)...
Write speed: 13.6MiB/s
Read speed: 23.4MiB/s
--============== Boot ==================--
Booting from serial...
Press Q or ESC to abort boot completely.
sL5DdSMmkekro
Timeout
No boot medium found
--============= Console ================--
litex> ident
Ident: LiteX SoC on ECPIX-5 2022-03-08 15:34:19
2022-03-08 09:40:17 -05:00
|
|
|
# Copyright (c) 2020-2022 Florent Kermarrec <florent@enjoy-digital.fr>
|
2020-08-23 09:00:17 -04:00
|
|
|
# SPDX-License-Identifier: BSD-2-Clause
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
from litex.build.generic_platform import *
|
2022-11-05 03:07:14 -04:00
|
|
|
from litex.build.lattice import LatticeECP5Platform
|
2021-01-30 07:19:08 -05:00
|
|
|
from litex.build.openfpgaloader import OpenFPGALoader
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# IOs ----------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
_io = [
|
2020-11-03 04:48:41 -05:00
|
|
|
# Clk / Rst
|
2020-04-22 10:31:07 -04:00
|
|
|
("clk100", 0, Pins("K23"), IOStandard("LVCMOS33")),
|
|
|
|
("rst_n", 0, Pins("N5"), IOStandard("LVCMOS33")),
|
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# Leds
|
2020-04-22 10:31:07 -04:00
|
|
|
("rgb_led", 0,
|
2021-01-28 08:25:16 -05:00
|
|
|
Subsignal("r", Pins("P21")),
|
|
|
|
Subsignal("g", Pins("R23")),
|
|
|
|
Subsignal("b", Pins("P22")),
|
2020-04-22 10:31:07 -04:00
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
("rgb_led", 1,
|
2021-01-28 08:25:16 -05:00
|
|
|
Subsignal("r", Pins("K21")),
|
|
|
|
Subsignal("g", Pins("K24")),
|
|
|
|
Subsignal("b", Pins("M21")),
|
2020-04-22 10:31:07 -04:00
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
("rgb_led", 2,
|
2021-01-28 08:25:16 -05:00
|
|
|
Subsignal("r", Pins("U21")),
|
|
|
|
Subsignal("g", Pins("W21")),
|
|
|
|
Subsignal("b", Pins("T24")),
|
2020-04-22 10:31:07 -04:00
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
("rgb_led", 3,
|
2021-01-28 08:25:16 -05:00
|
|
|
Subsignal("r", Pins("T23")),
|
|
|
|
Subsignal("g", Pins("R21")),
|
|
|
|
Subsignal("b", Pins("T22")),
|
2020-04-22 10:31:07 -04:00
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# Serial
|
2020-04-22 10:31:07 -04:00
|
|
|
("serial", 0,
|
|
|
|
Subsignal("rx", Pins("R26"), IOStandard("LVCMOS33")),
|
|
|
|
Subsignal("tx", Pins("R24"), IOStandard("LVCMOS33")),
|
|
|
|
),
|
2020-04-22 11:03:22 -04:00
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# DDR3 SDRAM
|
2020-04-22 11:03:22 -04:00
|
|
|
("ddram", 0,
|
|
|
|
Subsignal("a", Pins(
|
|
|
|
"T5 M3 L3 V6 K2 W6 K3 L1",
|
2021-01-29 08:03:43 -05:00
|
|
|
"H2 L2 N1 J1 M1 K1 H1"),
|
2020-04-22 11:03:22 -04:00
|
|
|
IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("ba", Pins("U6 N3 N4"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("ras_n", Pins("T3"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("cas_n", Pins("P2"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("we_n", Pins("R3"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("dm", Pins("U4 U1"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("dq", Pins(
|
|
|
|
"T4 W4 R4 W5 R6 P6 P5 P4",
|
|
|
|
"R1 W3 T2 V3 U3 W1 T1 W2",),
|
|
|
|
IOStandard("SSTL15_I"),
|
|
|
|
Misc("TERMINATION=75")),
|
|
|
|
Subsignal("dqs_p", Pins("V4 V1"), IOStandard("SSTL15D_I"),
|
|
|
|
Misc("TERMINATION=OFF"),
|
|
|
|
Misc("DIFFRESISTOR=100")),
|
|
|
|
Subsignal("clk_p", Pins("H3"), IOStandard("SSTL15D_I")),
|
|
|
|
Subsignal("cke", Pins("P1"), IOStandard("SSTL15_I")),
|
|
|
|
Subsignal("odt", Pins("P3"), IOStandard("SSTL15_I")),
|
|
|
|
Misc("SLEWRATE=FAST"),
|
|
|
|
),
|
2020-04-22 14:21:59 -04:00
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# RGMII Ethernetx
|
2020-04-22 14:21:59 -04:00
|
|
|
("eth_clocks", 0,
|
|
|
|
Subsignal("tx", Pins("A12")),
|
|
|
|
Subsignal("rx", Pins("E11")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
|
|
|
("eth", 0,
|
|
|
|
Subsignal("rst_n", Pins("C13")),
|
|
|
|
Subsignal("mdio", Pins("A13")),
|
|
|
|
Subsignal("mdc", Pins("C11")),
|
|
|
|
Subsignal("rx_ctl", Pins("A11")),
|
2020-05-06 10:00:42 -04:00
|
|
|
Subsignal("rx_data", Pins("B11 A10 B10 A9"), Misc("PULLMODE=UP")), # RGMII mode - Advertise all capabilities.
|
2020-04-22 14:21:59 -04:00
|
|
|
Subsignal("tx_ctl", Pins("C9")),
|
|
|
|
Subsignal("tx_data", Pins("D8 C8 B8 A8")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
2020-07-28 11:45:49 -04:00
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# SDCard
|
2020-07-28 11:45:49 -04:00
|
|
|
("sdcard", 0,
|
|
|
|
Subsignal("data", Pins("N26 N25 N23 N21"), Misc("PULLMODE=UP")),
|
|
|
|
Subsignal("cmd", Pins("M24"), Misc("PULLMODE=UP")),
|
|
|
|
Subsignal("clk", Pins("P24")),
|
2021-01-20 12:02:13 -05:00
|
|
|
Subsignal("cd", Pins("L22")),
|
2020-07-28 11:45:49 -04:00
|
|
|
Subsignal("cmd_dir", Pins("M23")),
|
|
|
|
Subsignal("dat0_dir", Pins("N24")),
|
|
|
|
Subsignal("dat13_dir", Pins("P26")),
|
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
2021-01-28 06:00:28 -05:00
|
|
|
|
|
|
|
# Sata
|
|
|
|
("sata", 0,
|
|
|
|
Subsignal("clk_p", Pins("AF12")),
|
|
|
|
Subsignal("clk_n", Pins("AF13")),
|
|
|
|
Subsignal("rx_p", Pins("AF15")),
|
|
|
|
Subsignal("rx_n", Pins("AF16")),
|
|
|
|
Subsignal("tx_p", Pins("AD16")),
|
|
|
|
Subsignal("tx_n", Pins("AD17")),
|
|
|
|
IOStandard("LVCMOS33"),
|
|
|
|
),
|
|
|
|
|
|
|
|
# SPIFlash
|
|
|
|
("spiflash", 0,
|
|
|
|
Subsignal("cs_n", Pins("AA2")),
|
|
|
|
Subsignal("mosi", Pins("AE2")),
|
|
|
|
Subsignal("miso", Pins("AD2")),
|
|
|
|
Subsignal("wp", Pins("AF2")),
|
|
|
|
Subsignal("hold", Pins("AE1")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
|
|
|
("spiflash4x", 0,
|
|
|
|
Subsignal("cs_n", Pins("AA2")),
|
|
|
|
Subsignal("dq", Pins("AE2", "AD2", "AF2", "AE1")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
2021-04-10 13:44:42 -04:00
|
|
|
|
|
|
|
# USB
|
|
|
|
("ulpi", 0,
|
|
|
|
Subsignal("rst", Pins("E23")),
|
|
|
|
Subsignal("clk", Pins("H24")),
|
|
|
|
Subsignal("dir", Pins("F22")),
|
|
|
|
Subsignal("nxt", Pins("F23")),
|
|
|
|
Subsignal("stp", Pins("H23")),
|
|
|
|
Subsignal("data", Pins("M26 L25 L26 K25 K26 J23 P25 H25")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
lambdaconcept_ecpix5: Add initial Video support at 640x480 (with Terminal/Framebuffer).
I2C intialization code adapted from https://github.com/ultraembedded/ecpix-5.
Tested with:
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-terminal --build --load
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-framebuffer --build --load
__ _ __ _ __
/ / (_) /____ | |/_/
/ /__/ / __/ -_)> <
/____/_/\__/\__/_/|_|
Build your hardware, easily!
(c) Copyright 2012-2022 Enjoy-Digital
(c) Copyright 2007-2015 M-Labs
BIOS built on Mar 8 2022 15:34:22
BIOS CRC passed (c7fe9ecd)
Migen git sha1: ac70301
LiteX git sha1: 7ebc7625
--=============== SoC ==================--
CPU: FireV-STANDARD @ 75MHz
BUS: WISHBONE 32-bit @ 4GiB
CSR: 32-bit data
ROM: 128KiB
SRAM: 8KiB
L2: 8KiB
SDRAM: 524288KiB 16-bit @ 300MT/s (CL-6 CWL-5)
--========== Initialization ============--
Initializing SDRAM @0x40000000...
Switching SDRAM to software control.
Read leveling:
m0, b00: |01110000| delays: 02+-01
m0, b01: |00000000| delays: -
m0, b02: |00000000| delays: -
m0, b03: |00000000| delays: -
best: m0, b00 delays: 02+-01
m1, b00: |01110000| delays: 02+-01
m1, b01: |00000000| delays: -
m1, b02: |00000000| delays: -
m1, b03: |00000000| delays: -
best: m1, b00 delays: 02+-01
Switching SDRAM to hardware control.
Memtest at 0x40000000 (2.0MiB)...
Write: 0x40000000-0x40200000 2.0MiB
Read: 0x40000000-0x40200000 2.0MiB
Memtest OK
Memspeed at 0x40000000 (Sequential, 2.0MiB)...
Write speed: 13.6MiB/s
Read speed: 23.4MiB/s
--============== Boot ==================--
Booting from serial...
Press Q or ESC to abort boot completely.
sL5DdSMmkekro
Timeout
No boot medium found
--============= Console ================--
litex> ident
Ident: LiteX SoC on ECPIX-5 2022-03-08 15:34:19
2022-03-08 09:40:17 -05:00
|
|
|
|
|
|
|
# HDMI / IT6613
|
|
|
|
("hdmi", 0,
|
|
|
|
Subsignal("r", Pins("AD26 AE25 AF25 AE26 E10 D11 D10 C10 D9 E8 H5 J4")),
|
|
|
|
Subsignal("g", Pins("AA23 AA22 AA24 AA25 E1 F2 F1 D17 D16 E16 J6 H6")),
|
2022-08-11 12:45:10 -04:00
|
|
|
Subsignal("b", Pins("AD25 AC26 AB24 AB25 B3 C3 D3 B1 C2 D2 D1 E3")),
|
lambdaconcept_ecpix5: Add initial Video support at 640x480 (with Terminal/Framebuffer).
I2C intialization code adapted from https://github.com/ultraembedded/ecpix-5.
Tested with:
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-terminal --build --load
- python3 -m litex_boards.targets.lambdaconcept_ecpix5 --cpu-type=firev --with-video-framebuffer --build --load
__ _ __ _ __
/ / (_) /____ | |/_/
/ /__/ / __/ -_)> <
/____/_/\__/\__/_/|_|
Build your hardware, easily!
(c) Copyright 2012-2022 Enjoy-Digital
(c) Copyright 2007-2015 M-Labs
BIOS built on Mar 8 2022 15:34:22
BIOS CRC passed (c7fe9ecd)
Migen git sha1: ac70301
LiteX git sha1: 7ebc7625
--=============== SoC ==================--
CPU: FireV-STANDARD @ 75MHz
BUS: WISHBONE 32-bit @ 4GiB
CSR: 32-bit data
ROM: 128KiB
SRAM: 8KiB
L2: 8KiB
SDRAM: 524288KiB 16-bit @ 300MT/s (CL-6 CWL-5)
--========== Initialization ============--
Initializing SDRAM @0x40000000...
Switching SDRAM to software control.
Read leveling:
m0, b00: |01110000| delays: 02+-01
m0, b01: |00000000| delays: -
m0, b02: |00000000| delays: -
m0, b03: |00000000| delays: -
best: m0, b00 delays: 02+-01
m1, b00: |01110000| delays: 02+-01
m1, b01: |00000000| delays: -
m1, b02: |00000000| delays: -
m1, b03: |00000000| delays: -
best: m1, b00 delays: 02+-01
Switching SDRAM to hardware control.
Memtest at 0x40000000 (2.0MiB)...
Write: 0x40000000-0x40200000 2.0MiB
Read: 0x40000000-0x40200000 2.0MiB
Memtest OK
Memspeed at 0x40000000 (Sequential, 2.0MiB)...
Write speed: 13.6MiB/s
Read speed: 23.4MiB/s
--============== Boot ==================--
Booting from serial...
Press Q or ESC to abort boot completely.
sL5DdSMmkekro
Timeout
No boot medium found
--============= Console ================--
litex> ident
Ident: LiteX SoC on ECPIX-5 2022-03-08 15:34:19
2022-03-08 09:40:17 -05:00
|
|
|
Subsignal("de", Pins("A3")),
|
|
|
|
Subsignal("clk", Pins("C1")),
|
|
|
|
Subsignal("vsync", Pins("A4")),
|
|
|
|
Subsignal("hsync", Pins("B4")),
|
|
|
|
Subsignal("sda", Pins("E17")),
|
|
|
|
Subsignal("scl", Pins("C17")),
|
|
|
|
IOStandard("LVCMOS33")
|
|
|
|
),
|
2020-04-22 10:31:07 -04:00
|
|
|
]
|
|
|
|
|
2020-11-03 04:48:41 -05:00
|
|
|
# Connectors ---------------------------------------------------------------------------------------
|
|
|
|
|
2021-01-28 06:00:28 -05:00
|
|
|
_connectors = [
|
|
|
|
("pmod0", "T25 U25 U24 V24 T26 U26 V26 W26"),
|
|
|
|
("pmod1", "U23 V23 U22 V21 W25 W24 W23 W22"),
|
|
|
|
("pmod2", "J24 H22 E21 D18 K22 J21 H21 D22"),
|
|
|
|
("pmod3", "E4 F4 E6 H4 F3 D4 D5 F5"),
|
|
|
|
("pmod4", "E26 D25 F26 F25 C26 C25 A25 A24"),
|
|
|
|
("pmod5", "D19 C21 B21 C22 D21 A21 A22 A23"),
|
|
|
|
("pmod6", "C16 B17 C18 B19 A17 A18 A19 C19"),
|
|
|
|
("pmod7", "D14 B14 E14 B16 C14 A14 A15 A16"),
|
|
|
|
]
|
2020-04-22 10:31:07 -04:00
|
|
|
|
|
|
|
# Platform -----------------------------------------------------------------------------------------
|
|
|
|
|
2022-11-05 03:07:14 -04:00
|
|
|
class Platform(LatticeECP5Platform):
|
2020-04-22 10:31:07 -04:00
|
|
|
default_clk_name = "clk100"
|
|
|
|
default_clk_period = 1e9/100e6
|
|
|
|
|
2021-01-18 17:22:52 -05:00
|
|
|
def __init__(self, device="85F", toolchain="trellis", **kwargs):
|
|
|
|
assert device in ["45F", "85F"]
|
2022-11-05 03:07:14 -04:00
|
|
|
LatticeECP5Platform.__init__(self, f"LFE5UM5G-{device}-8BG554I", _io, _connectors, toolchain=toolchain, **kwargs)
|
2020-05-05 05:45:41 -04:00
|
|
|
|
2020-05-05 07:16:02 -04:00
|
|
|
def create_programmer(self):
|
2021-01-30 07:19:08 -05:00
|
|
|
return OpenFPGALoader("ecpix5")
|
2020-05-05 07:16:02 -04:00
|
|
|
|
2020-05-05 05:45:41 -04:00
|
|
|
def do_finalize(self, fragment):
|
2022-11-05 03:07:14 -04:00
|
|
|
LatticeECP5Platform.do_finalize(self, fragment)
|
2020-05-05 05:45:41 -04:00
|
|
|
self.add_period_constraint(self.lookup_request("clk100", loose=True), 1e9/100e6)
|
2020-05-05 10:01:43 -04:00
|
|
|
self.add_period_constraint(self.lookup_request("eth_clocks:rx", 0, loose=True), 1e9/125e6)
|