Message ID | 20221214221506.43849-3-angelo@amarulasolutions.com |
---|---|
State | Superseded |
Delegated to: | Peter Korsgaard |
Headers | show |
Series | [v5,1/3] package/rtl8723ds-bt: new package | expand |
Kontakt Angelo Compagnucci (<angelo@amarulasolutions.com>) kirjutas kuupƤeval N, 15. detsember 2022 kell 00:15: > Lichee RV Dock is a RISC-V Linux development kits with high integration, > small size and affordable price designed for opensource developer. > > https://wiki.sipeed.com/hardware/en/lichee/RV/Dock.html > > Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> > --- > v5: > * Fixing typos in readme (Indrek Kruusa) > v4: > * Bump to the latest kernel/uboot/opensbi as per nezha defconfig > v3: > * Use kernel config fragment to enable RTL8723DS-BT driver > * Use mdev to let the system load device drivers modules at boot > (rtl8723ds wifi and bluetooth) > > board/sipeed/lichee_rv_dock/genimage.cfg | 19 ++++++++ > board/sipeed/lichee_rv_dock/linux.fragment | 7 +++ > .../overlay/etc/network/interfaces | 6 +++ > .../overlay/etc/wpa_supplicant.conf | 8 ++++ > board/sipeed/lichee_rv_dock/readme.txt | 45 +++++++++++++++++++ > configs/sipeed_lichee_rv_dock_defconfig | 41 +++++++++++++++++ > 6 files changed, 126 insertions(+) > create mode 100644 board/sipeed/lichee_rv_dock/genimage.cfg > create mode 100644 board/sipeed/lichee_rv_dock/linux.fragment > create mode 100644 > board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces > create mode 100644 > board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf > create mode 100644 board/sipeed/lichee_rv_dock/readme.txt > create mode 100644 configs/sipeed_lichee_rv_dock_defconfig > > diff --git a/board/sipeed/lichee_rv_dock/genimage.cfg > b/board/sipeed/lichee_rv_dock/genimage.cfg > new file mode 100644 > index 0000000000..38078f0ae3 > --- /dev/null > +++ b/board/sipeed/lichee_rv_dock/genimage.cfg > @@ -0,0 +1,19 @@ > +# Minimal SD card image for the sipeed Lichee RV dock > + > +image sdcard.img { > + hdimage { > + } > + > + partition u-boot { > + in-partition-table = false > + image = "u-boot-sunxi-with-spl.bin" > + offset = 8K > + } > + > + partition rootfs { > + partition-type = 0x83 > + image = "rootfs.ext4" > + bootable = "true" > + offset = 1M > + } > +} > diff --git a/board/sipeed/lichee_rv_dock/linux.fragment > b/board/sipeed/lichee_rv_dock/linux.fragment > new file mode 100644 > index 0000000000..10016889ab > --- /dev/null > +++ b/board/sipeed/lichee_rv_dock/linux.fragment > @@ -0,0 +1,7 @@ > +CONFIG_BT=y > +CONFIG_BT_HCIUART=m > +CONFIG_BT_HCIUART_SERDEV=y > +CONFIG_BT_HCIUART_3WIRE=y > +CONFIG_BT_HCIUART_RTL=y > +CONFIG_SERIAL_DEV_BUS=y > +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y > diff --git a/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces > b/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces > new file mode 100644 > index 0000000000..89e7d74aff > --- /dev/null > +++ b/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces > @@ -0,0 +1,6 @@ > +auto lo > +iface lo inet loopback > + > +auto wlan0 > +iface wlan0 inet dhcp > +wpa-conf /etc/wpa_supplicant.conf > diff --git a/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf > b/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf > new file mode 100644 > index 0000000000..b43292b0a7 > --- /dev/null > +++ b/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf > @@ -0,0 +1,8 @@ > +ap_scan=1 > + > +network={ > + ssid="YOURSSID" > + scan_ssid=1 > + key_mgmt=WPA-PSK > + psk="YOURPASSWD" > +} > diff --git a/board/sipeed/lichee_rv_dock/readme.txt > b/board/sipeed/lichee_rv_dock/readme.txt > new file mode 100644 > index 0000000000..05e1e8d43b > --- /dev/null > +++ b/board/sipeed/lichee_rv_dock/readme.txt > @@ -0,0 +1,45 @@ > +Lichee RV dock > +=============== > + > +Lichee RV Dock is a RISC-V Linux development kits with high integration, > small > +size and affordable price designed for opensource developer. It's > equipped with > +HDMI interface and it supports many screen by its screen convert board. > It's > +also equipped with many peripherals, including a UAB-A port, 2.4G Wifi-BT > module, > +an analog microphone and a speaker jack interface. > + > +How to build > +============ > + > +$ make sipeed_lichee_rv_dock_defconfig > +$ make > + > +Wifi > +========== > + > +Edit board/sipeed/lichee_rv/overlay_dock/etc/wpa_supplicant.conf or > No, this mistake in the path is not fixed. But I did a clean build for 'sipeed_lichee_rv_dock_defconfig' and booted it on the Lichee RV dock without issues. So you can add: Tested-by: Indrek Kruusa <indrek.kruusa@gmail.com> > +/etc/wpa_supplicant.conf once connected to the board: > + > +* Replace YOURSSID with your AP ssid > +* Replace YOURPASSWD with your AP password > + > +Bluetooth > +========== > + > +To make the device discoverable and pairable, once connected to the board: > + > +* bluetoothctl power on > +* bluetoothctl discoverable yes > +* bluetoothctl pairable yes > + > +How to write the SD card > +======================== > + > +Once the build process is finished you will have an image called > "sdcard.img" > +in the output/images/ directory. > + > +Copy the bootable "sdcard.img" onto an SD card with "dd": > + > + $ sudo dd if=output/images/sdcard.img of=/dev/sdX > + > +Connect a TTL UART to the debug connector, insert the microSD card and > +plug in a USB-C cable to the PWR connector to boot the system. > diff --git a/configs/sipeed_lichee_rv_dock_defconfig > b/configs/sipeed_lichee_rv_dock_defconfig > new file mode 100644 > index 0000000000..7c8c6788fa > --- /dev/null > +++ b/configs/sipeed_lichee_rv_dock_defconfig > @@ -0,0 +1,41 @@ > +BR2_riscv=y > +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_0=y > +BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y > +BR2_ROOTFS_OVERLAY="board/sipeed/lichee_rv/overlay > board/sipeed/lichee_rv_dock/overlay" > +BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh" > +BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/sipeed/lichee_rv_dock/genimage.cfg" > +BR2_LINUX_KERNEL=y > +BR2_LINUX_KERNEL_CUSTOM_TARBALL=y > +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call > github,smaeul,linux,ca67838d84af4c9f85d06311c9e98e1adf46308f)/linux-ca67838d84af4c9f85d06311c9e98e1adf46308f.tar.gz" > +BR2_LINUX_KERNEL_DEFCONFIG="nezha" > +BR2_LINUX_KERNEL_DTS_SUPPORT=y > +BR2_LINUX_KERNEL_INTREE_DTS_NAME="allwinner/sun20i-d1-lichee-rv-dock" > > +BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/sipeed/lichee_rv_dock/linux.fragment" > +BR2_LINUX_KERNEL_INSTALL_TARGET=y > +BR2_PACKAGE_RTL8723DS=y > +BR2_PACKAGE_RTL8723DS_BT=y > +BR2_PACKAGE_BLUEZ5_UTILS=y > +BR2_PACKAGE_BLUEZ5_UTILS_CLIENT=y > +BR2_PACKAGE_WPA_SUPPLICANT=y > +BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y > +BR2_TARGET_ROOTFS_EXT2=y > +BR2_TARGET_ROOTFS_EXT2_4=y > +# BR2_TARGET_ROOTFS_TAR is not set > +BR2_TARGET_OPENSBI=y > +BR2_TARGET_OPENSBI_CUSTOM_VERSION=y > +BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.1" > +BR2_TARGET_OPENSBI_PLAT="generic" > +# BR2_TARGET_OPENSBI_INSTALL_JUMP_IMG is not set > +BR2_TARGET_UBOOT=y > +BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y > +BR2_TARGET_UBOOT_CUSTOM_TARBALL=y > +BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call > github,smaeul,u-boot,528ae9bc6c55edd3ffe642734b4132a8246ea777)/uboot-528ae9bc6c55edd3ffe642734b4132a8246ea777.tar.gz" > +BR2_TARGET_UBOOT_BOARD_DEFCONFIG="lichee_rv_dock" > +BR2_TARGET_UBOOT_NEEDS_DTC=y > +BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y > +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y > +BR2_TARGET_UBOOT_NEEDS_OPENSBI=y > +# BR2_TARGET_UBOOT_FORMAT_BIN is not set > +BR2_TARGET_UBOOT_FORMAT_CUSTOM=y > +BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin" > +BR2_PACKAGE_HOST_GENIMAGE=y > -- > 2.34.1 > >
diff --git a/board/sipeed/lichee_rv_dock/genimage.cfg b/board/sipeed/lichee_rv_dock/genimage.cfg new file mode 100644 index 0000000000..38078f0ae3 --- /dev/null +++ b/board/sipeed/lichee_rv_dock/genimage.cfg @@ -0,0 +1,19 @@ +# Minimal SD card image for the sipeed Lichee RV dock + +image sdcard.img { + hdimage { + } + + partition u-boot { + in-partition-table = false + image = "u-boot-sunxi-with-spl.bin" + offset = 8K + } + + partition rootfs { + partition-type = 0x83 + image = "rootfs.ext4" + bootable = "true" + offset = 1M + } +} diff --git a/board/sipeed/lichee_rv_dock/linux.fragment b/board/sipeed/lichee_rv_dock/linux.fragment new file mode 100644 index 0000000000..10016889ab --- /dev/null +++ b/board/sipeed/lichee_rv_dock/linux.fragment @@ -0,0 +1,7 @@ +CONFIG_BT=y +CONFIG_BT_HCIUART=m +CONFIG_BT_HCIUART_SERDEV=y +CONFIG_BT_HCIUART_3WIRE=y +CONFIG_BT_HCIUART_RTL=y +CONFIG_SERIAL_DEV_BUS=y +CONFIG_SERIAL_DEV_CTRL_TTYPORT=y diff --git a/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces b/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces new file mode 100644 index 0000000000..89e7d74aff --- /dev/null +++ b/board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces @@ -0,0 +1,6 @@ +auto lo +iface lo inet loopback + +auto wlan0 +iface wlan0 inet dhcp +wpa-conf /etc/wpa_supplicant.conf diff --git a/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf b/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf new file mode 100644 index 0000000000..b43292b0a7 --- /dev/null +++ b/board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf @@ -0,0 +1,8 @@ +ap_scan=1 + +network={ + ssid="YOURSSID" + scan_ssid=1 + key_mgmt=WPA-PSK + psk="YOURPASSWD" +} diff --git a/board/sipeed/lichee_rv_dock/readme.txt b/board/sipeed/lichee_rv_dock/readme.txt new file mode 100644 index 0000000000..05e1e8d43b --- /dev/null +++ b/board/sipeed/lichee_rv_dock/readme.txt @@ -0,0 +1,45 @@ +Lichee RV dock +=============== + +Lichee RV Dock is a RISC-V Linux development kits with high integration, small +size and affordable price designed for opensource developer. It's equipped with +HDMI interface and it supports many screen by its screen convert board. It's +also equipped with many peripherals, including a UAB-A port, 2.4G Wifi-BT module, +an analog microphone and a speaker jack interface. + +How to build +============ + +$ make sipeed_lichee_rv_dock_defconfig +$ make + +Wifi +========== + +Edit board/sipeed/lichee_rv/overlay_dock/etc/wpa_supplicant.conf or +/etc/wpa_supplicant.conf once connected to the board: + +* Replace YOURSSID with your AP ssid +* Replace YOURPASSWD with your AP password + +Bluetooth +========== + +To make the device discoverable and pairable, once connected to the board: + +* bluetoothctl power on +* bluetoothctl discoverable yes +* bluetoothctl pairable yes + +How to write the SD card +======================== + +Once the build process is finished you will have an image called "sdcard.img" +in the output/images/ directory. + +Copy the bootable "sdcard.img" onto an SD card with "dd": + + $ sudo dd if=output/images/sdcard.img of=/dev/sdX + +Connect a TTL UART to the debug connector, insert the microSD card and +plug in a USB-C cable to the PWR connector to boot the system. diff --git a/configs/sipeed_lichee_rv_dock_defconfig b/configs/sipeed_lichee_rv_dock_defconfig new file mode 100644 index 0000000000..7c8c6788fa --- /dev/null +++ b/configs/sipeed_lichee_rv_dock_defconfig @@ -0,0 +1,41 @@ +BR2_riscv=y +BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_6_0=y +BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y +BR2_ROOTFS_OVERLAY="board/sipeed/lichee_rv/overlay board/sipeed/lichee_rv_dock/overlay" +BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh" +BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/sipeed/lichee_rv_dock/genimage.cfg" +BR2_LINUX_KERNEL=y +BR2_LINUX_KERNEL_CUSTOM_TARBALL=y +BR2_LINUX_KERNEL_CUSTOM_TARBALL_LOCATION="$(call github,smaeul,linux,ca67838d84af4c9f85d06311c9e98e1adf46308f)/linux-ca67838d84af4c9f85d06311c9e98e1adf46308f.tar.gz" +BR2_LINUX_KERNEL_DEFCONFIG="nezha" +BR2_LINUX_KERNEL_DTS_SUPPORT=y +BR2_LINUX_KERNEL_INTREE_DTS_NAME="allwinner/sun20i-d1-lichee-rv-dock" +BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="board/sipeed/lichee_rv_dock/linux.fragment" +BR2_LINUX_KERNEL_INSTALL_TARGET=y +BR2_PACKAGE_RTL8723DS=y +BR2_PACKAGE_RTL8723DS_BT=y +BR2_PACKAGE_BLUEZ5_UTILS=y +BR2_PACKAGE_BLUEZ5_UTILS_CLIENT=y +BR2_PACKAGE_WPA_SUPPLICANT=y +BR2_PACKAGE_WPA_SUPPLICANT_AUTOSCAN=y +BR2_TARGET_ROOTFS_EXT2=y +BR2_TARGET_ROOTFS_EXT2_4=y +# BR2_TARGET_ROOTFS_TAR is not set +BR2_TARGET_OPENSBI=y +BR2_TARGET_OPENSBI_CUSTOM_VERSION=y +BR2_TARGET_OPENSBI_CUSTOM_VERSION_VALUE="1.1" +BR2_TARGET_OPENSBI_PLAT="generic" +# BR2_TARGET_OPENSBI_INSTALL_JUMP_IMG is not set +BR2_TARGET_UBOOT=y +BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y +BR2_TARGET_UBOOT_CUSTOM_TARBALL=y +BR2_TARGET_UBOOT_CUSTOM_TARBALL_LOCATION="$(call github,smaeul,u-boot,528ae9bc6c55edd3ffe642734b4132a8246ea777)/uboot-528ae9bc6c55edd3ffe642734b4132a8246ea777.tar.gz" +BR2_TARGET_UBOOT_BOARD_DEFCONFIG="lichee_rv_dock" +BR2_TARGET_UBOOT_NEEDS_DTC=y +BR2_TARGET_UBOOT_NEEDS_PYLIBFDT=y +BR2_TARGET_UBOOT_NEEDS_OPENSSL=y +BR2_TARGET_UBOOT_NEEDS_OPENSBI=y +# BR2_TARGET_UBOOT_FORMAT_BIN is not set +BR2_TARGET_UBOOT_FORMAT_CUSTOM=y +BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin" +BR2_PACKAGE_HOST_GENIMAGE=y
Lichee RV Dock is a RISC-V Linux development kits with high integration, small size and affordable price designed for opensource developer. https://wiki.sipeed.com/hardware/en/lichee/RV/Dock.html Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> --- v5: * Fixing typos in readme (Indrek Kruusa) v4: * Bump to the latest kernel/uboot/opensbi as per nezha defconfig v3: * Use kernel config fragment to enable RTL8723DS-BT driver * Use mdev to let the system load device drivers modules at boot (rtl8723ds wifi and bluetooth) board/sipeed/lichee_rv_dock/genimage.cfg | 19 ++++++++ board/sipeed/lichee_rv_dock/linux.fragment | 7 +++ .../overlay/etc/network/interfaces | 6 +++ .../overlay/etc/wpa_supplicant.conf | 8 ++++ board/sipeed/lichee_rv_dock/readme.txt | 45 +++++++++++++++++++ configs/sipeed_lichee_rv_dock_defconfig | 41 +++++++++++++++++ 6 files changed, 126 insertions(+) create mode 100644 board/sipeed/lichee_rv_dock/genimage.cfg create mode 100644 board/sipeed/lichee_rv_dock/linux.fragment create mode 100644 board/sipeed/lichee_rv_dock/overlay/etc/network/interfaces create mode 100644 board/sipeed/lichee_rv_dock/overlay/etc/wpa_supplicant.conf create mode 100644 board/sipeed/lichee_rv_dock/readme.txt create mode 100644 configs/sipeed_lichee_rv_dock_defconfig