imx8q_evk: remove board support from repository

Moved to separate repo at https://github.com/skalk/genode-imx/

Fix #4301
This commit is contained in:
Stefan Kalkowski
2021-10-18 11:41:24 +02:00
committed by Christian Helmuth
parent 7917c5d9ec
commit b12b0ed93d
94 changed files with 9 additions and 9885 deletions

View File

@@ -1,26 +0,0 @@
/*
* \brief MMIO and IRQ definitions for the i.MX8Q EVK board
* \author Christian Prochaska
* \date 2019-09-26
*/
/*
* Copyright (C) 2019 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
#ifndef _INCLUDE__DRIVERS__DEFS__IMX8Q_EVK_H_
#define _INCLUDE__DRIVERS__DEFS__IMX8Q_EVK_H_
namespace Imx8 {
enum {
/* SD host controller */
SDHC_2_IRQ = 55,
SDHC_2_MMIO_BASE = 0x30b50000,
SDHC_2_MMIO_SIZE = 0x00010000,
};
};
#endif /* _INCLUDE__DRIVERS__DEFS__IMX8Q_EVK_H_ */

View File

@@ -1 +0,0 @@
f3fd6bdf4956fb3d4e9ae351030d8cc587f0ebcf

View File

@@ -1,12 +0,0 @@
LICENSE := GPLv2
VERSION := git
DOWNLOADS := ubfg.git
URL(ubfg) := https://github.com/alex-ab/ubfg.git
REV(ubfg) := 89bb867cb58fa9d8fb2e38b6d52256a68920354d
DIR(ubfg) := scripts
default: $(DOWNLOADS)
$(VERBOSE)echo "building imx8q_evk uboot"
$(VERBOSE)mkdir -p imx8q_evk
$(VERBOSE)cd imx8q_evk && ../scripts/create_uboot_imx8q_evk && cd ..

View File

@@ -12,7 +12,6 @@ proc have_platform_drv {} {
proc usb_host_drv_binary { } {
if {[have_board rpi]} { return rpi_usb_host_drv }
if {[have_board imx6q_sabrelite]} { return imx6q_sabrelite_usb_host_drv }
if {[have_board imx8q_evk]} { return imx8q_evk_usb_host_drv }
if {[have_board pc]} { return x86_pc_usb_host_drv }
return no_usb_drv_available
}