zumbi / HiFive_U-Boot

HiFIve Unleashed U-Boot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HiFive_U-Boot

Development repository for HiFive Unleashed U-Boot

This repository contains the U-Boot created by Microsemi a Microchip company for RISC-V core on HiFive Unleashed 540 device. The HiFive Unleashed Board is used for HiFive U-Boot.

RISC-V cross tools

Get the RISC-V cross tool from SiFive GitHub and follow the README file for installation.

    $ git clone --recursive https://github.com/sifive/freedom-u-sdk.git    
    $ cd freedom-u-sdk    
    $ make

Getting U-Boot sources

    $ git clone https://github.com/Microsemi-SoC-IP/HiFive_U-Boot
    $ cd HiFive_U-Boot

Build U-Boot

  1. Set the PATH

     $ export PATH=$PATH:/{path to freedom-u-sdk}/toolchain/bin
    
  2. Create U-Boot configuration based on architecture defaults:

     $ make HiFive-U540_defconfig
    
  3. Optionally edit the configuration via an ncurses interface:

     $ make menuconfig
    
  4. Build the U-Boot image:

     $ make
    

Load uboot image on SD card

  1. Copy uboot.bin image to freedom-u-sdk/work directory

  2. Connect SD card to a Host machine.

  3. Open make file from freedom-u-sdk directory and edit at .PHONY: format-boot-loader

     .PHONY: format-boot-loader
     format-boot-loader: $(bin)
        @test -b $(DISK) || (echo "$(DISK): is not a block device"; exit 1)
        sgdisk --clear                                                               \
               --new=1:2048:4095   --change-name=1:uboot      --typecode=1:$(FSBL)   \
               --new=2:4096:69631  --change-name=2:bootloader --typecode=2:$(BBL)   \
               --new=3:264192:     --change-name=3:root       --typecode=3:$(LINUX) \
           $(DISK)
     @sleep 1
     ifeq ($(DISK)p1,$(wildcard $(DISK)p1))
        @$(eval PART1 := $(DISK)p1)
        @$(eval PART2 := $(DISK)p2)
        @$(eval PART3 := $(DISK)p3)
     else ifeq ($(DISK)s1,$(wildcard $(DISK)s1))
        @$(eval PART1 := $(DISK)s1)
        @$(eval PART2 := $(DISK)s2)
        @$(eval PART3 := $(DISK)s3)
     else ifeq ($(DISK)1,$(wildcard $(DISK)1))
        @$(eval PART1 := $(DISK)1)
        @$(eval PART2 := $(DISK)2)
        @$(eval PART3 := $(DISK)3)
     else
        @echo Error: Could not find bootloader partition for $(DISK)
    @exit 1
    
    endif
    
    dd if=/{Path_To}/freedom-u-sdk/work/u-boot.bin of=$(PART1) bs=4096
    
    dd if=/{Path_To}/freedom-u-sdk/work/bbl.bin of=$(PART2) bs=4096
    
    mke2fs -t ext3 $(PART3)
    
  4. Go to freedom-u-sdk directory

     $ cd freedom-u-sdk
     $ sudo make DISK=/dev/sdb format-boot-loader
    

If any error, follow the HiFive Getting started user guide section 7.2.4.

  1. Remove SD card from Host machine and insert it on the HiFive unleashed Board

  2. Select dip switch for mode select to 1011(boot from SD card)

  3. Power suppy the board and connect usb cable to Host Machine and open serial terminal with 115200 baud rate.

  4. Press reset button and see the uboot messages on serial terminal

Boot Linux from SD card

Enter below commands on serial terminal

    # mmc_spi 1 20000000 0
    # mmc read 0x80000000 0x1000 0x10000
    # go 0x80000000

Boot Linux from TFTP

Enter below commands on serial terminal

    # setenv serverip xx.xx.xx.xx
    # bootp
    # go 0x80000000

About

HiFIve Unleashed U-Boot


Languages

Language:C 88.1%Language:C++ 6.4%Language:Python 1.8%Language:Assembly 1.5%Language:Makefile 0.7%Language:Perl 0.6%Language:Objective-C 0.6%Language:Shell 0.2%Language:Yacc 0.0%Language:HTML 0.0%Language:Lex 0.0%Language:Batchfile 0.0%Language:GDB 0.0%Language:sed 0.0%Language:CSS 0.0%Language:Tcl 0.0%Language:Awk 0.0%