You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

203 lines
4.4 KiB
Markdown

8 months ago
---
author: Penguin
date: 06/19/23
title: PolarFire SoC FPGA
---
1 year ago
8 months ago
# About the Board
1 year ago
8 months ago
<img src="./doc/img/PolarFire-Board.png"
style="width:50.0%;height:50.0%" />
1 year ago
8 months ago
# Installing Libero (via portage)
1 year ago
8 months ago
# Installing Libero (MANUAL)
1 year ago
8 months ago
## Prerequisites
1 year ago
8 months ago
## Installation Process
1 year ago
8 months ago
``` bash
sudo mkdir -p /opt/Microchip
sudo chown $USER:$USER /opt/Microchip
unzip
```
1 year ago
8 months ago
Installer Directions:
1 year ago
8 months ago
- Install Directory: /opt/Microchip/Libero_SoC_v2023.1
- Common Directory: /opt/Microchip/common
- Install Set: Everything
1 year ago
8 months ago
## Post-Install
1 year ago
8 months ago
``` bash
sudo /opt/Microchip/Libero_SoC_v2023.1/Logs/req_to_install.sh
```
1 year ago
8 months ago
### Installing FlashPro Drivers
1 year ago
8 months ago
You need to have the FlashPro device to install these, so ignore this if
you don't have a FlashPro device.
1 year ago
8 months ago
1. FlashPro 5
1 year ago
8 months ago
``` bash
sudo /opt/Microchip/Libero_SoC_v2023.1/Libero/bin/udev_install
```
1 year ago
8 months ago
2. FlashPro 6
1 year ago
8 months ago
``` bash
sudo /opt/Microchip/Libero_SoC_v2023.1/Libero/bin/fp6_env_install
```
1 year ago
8 months ago
### Installing Your License
1 year ago
8 months ago
You can register for a Microchip and request a year-long evaluation
license here:
<https://www.microchipdirect.com/login?redirectTo=%2Ffpga-software-products>
1 year ago
8 months ago
You'll want to get the **LIB-PL-MACID-F-EVAL** license, which is a
floating linux license. If you're on windows, just get whatever license
works for you.
1 year ago
8 months ago
``` bash
mkdir -p /opt/Microchip/Libero_SoC_v2023.1/license
cp /path/to/license /opt/Microchip/Libero_SoC_v2023/license
```
1 year ago
8 months ago
### Installing the Licensing Daemon
1 year ago
8 months ago
``` bash
# install lsb-core
sudo apt install lsb-core
sudo cp scripts/libero-license.service /etc/systemd/user
```
1 year ago
8 months ago
# Install Yocto Ecosystem
1 year ago
8 months ago
## Prerequisites
1 year ago
8 months ago
``` bash
sudo apt-get install gawk wget git-core diffstat unzip texinfo gcc-multilib \
build-essential chrpath socat libsdl1.2-dev xterm bmap-utils python3-distutils repo
```
1 year ago
8 months ago
## Create the Yocto Workspace
1 year ago
8 months ago
``` bash
mkdir yocto-dev && cd yocto-dev
repo init -u https://github.com/polarfire-soc/polarfire-soc-yocto-manifests.git -b main -m default.xml
```
1 year ago
8 months ago
## Update the repo workspace
``` bash
repo sync
repo rebase
```
## Setup the Bitbake environment
``` bash
. ./meta-polarfire-soc-yocto-bsp/polarfire-soc_yocto_setup.sh
```
## Optimize your build environment
Yocto builds take a very long time. We can optimize this.
``` bash
mkdir -p ${HOME}/.local/share/yocto/downloads
mkdir -p ${HOME}/.local/share/yocto/sstate-cache
mkdir -p ${HOME}/.local/share/yocto/persistent
cd <project_root>/build/conf/
echo '
BB_NUMBER_THREADS ?= "${@oe.utils.cpu_count()}"
PARALLEL_MAKE ?= "-j ${@oe.utils.cpu_count() - 1}"
DL_DIR = "${HOME}/.local/share/yocto/downloads"
SSTATE_DIR = "${HOME}/.local/share/yocto/sstate-cache"
PERSISTENT_DIR=${HOME/.local/share/yocto/persistent
SOURCE_MIRROR_URL ?= "file://${HOME}/.local/share/yocto/downloads"
INHERIT += "own-mirrors"
BB_GENERATE_MIRROR_TARBALLS = "1"
# uncomment to test sources
# BB_NO_NETWORK = "1"
# remove static deps
STATICLIBCONF = "--disable-static"
DISABLE_STATIC:pn-openssl = ""
DISABLE_STATIC:pn-openssl-native = ""
DISABLE_STATIC:pn-nativesdk-openssl = ""
DISABLE_STATIC:pn-libtalloc = ""
EXTRA_OECONF += "${STATICLIBCONF}"
' >> local.conf
```
## Build the Disk Image
``` bash
cd $PROOT
bitbake mpfs-dev-cli
```
1 year ago
8 months ago
# References
[PolarFire Yocto
Github](https://github.com/polarfire-soc/meta-polarfire-soc-yocto-bsp)
1 year ago
8 months ago
# Creating a Bootable Yocto Linux Image
1 year ago
8 months ago
We have two options: Create a new workspace, or we can use this repo as
a workspace because this repo is my working workspace.
1 year ago
8 months ago
## Create a workspace (OPTIONAL)
1 year ago
8 months ago
mkdir yocto-dev && cd yocto-dev
repo init -u https://github.com/polarfire-soc/polarfire-soc-yocto-manifests.git -b main -m default.xml
1 year ago
8 months ago
## Update the repo workspace
1 year ago
8 months ago
``` bash
repo sync
repo rebase
```
1 year ago
8 months ago
## Set up the Bitbake environment
1 year ago
8 months ago
``` bash
. ./meta-polarfire-soc-yocto-bsp/polarfire-soc_yocto_setup.sh
```
1 year ago
8 months ago
## Building Board Disk Image
1 year ago
8 months ago
### Building a Linux Image with a root file system (RootFS)
1 year ago
8 months ago
``` bash
MACHINE=icicle-kit-es bitbake mpfs-dev-cli
```
1 year ago
8 months ago
### Building a RAM-based Root Filestystem
1 year ago
8 months ago
``` bash
MACHINE=icicle-kit-es bitbake -R conf/initramfs.conf mpfs-initramfs-image
```
1 year ago
8 months ago
### Building a Linux Image for an external QSPI flash memory
1 year ago
8 months ago
### Flashing an SD Card
``` bash
zcat build/tmp-glibc/deploy/images/icicle-kit-es/mpfs-dev-cli-icicle-kit-es.wic.gz | sudo dd of=/dev/sdX bs=4096 iflag=fullblock oflag=direct conv=fsync status=progress
```
# References
1 year ago
8 months ago
[PolarFire SoC
Yocto](https://github.com/polarfire-soc/meta-polarfire-soc-yocto-bsp)
1 year ago
8 months ago
**\*\***