From owner-svn-src-all@freebsd.org Fri Sep 30 10:20:54 2016 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DC93C01F01; Fri, 30 Sep 2016 10:20:54 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id ECA33A7D; Fri, 30 Sep 2016 10:20:53 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u8UAKrM4087719; Fri, 30 Sep 2016 10:20:53 GMT (envelope-from andrew@FreeBSD.org) Received: (from andrew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u8UAKriZ087716; Fri, 30 Sep 2016 10:20:53 GMT (envelope-from andrew@FreeBSD.org) Message-Id: <201609301020.u8UAKriZ087716@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: andrew set sender to andrew@FreeBSD.org using -f From: Andrew Turner Date: Fri, 30 Sep 2016 10:20:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r306490 - head/sys/arm/conf X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Sep 2016 10:20:54 -0000 Author: andrew Date: Fri Sep 30 10:20:53 2016 New Revision: 306490 URL: https://svnweb.freebsd.org/changeset/base/306490 Log: Add support for Tegra to the armv6 GENERIC kernel. Reviewed by: imp, mmel Sponsored by: ABT Systems Ltd Differential Revision: https://reviews.freebsd.org/D8084 Modified: head/sys/arm/conf/GENERIC Modified: head/sys/arm/conf/GENERIC ============================================================================== --- head/sys/arm/conf/GENERIC Fri Sep 30 10:00:57 2016 (r306489) +++ head/sys/arm/conf/GENERIC Fri Sep 30 10:20:53 2016 (r306490) @@ -33,6 +33,7 @@ files "../allwinner/a20/files.a20" files "../allwinner/a31/files.a31" files "../allwinner/a83t/files.a83t" files "../allwinner/h3/files.h3" +files "../nvidia/tegra124/files.tegra124" files "../qemu/files.qemu" options SOC_ALLWINNER_A20 @@ -46,6 +47,7 @@ options SMP # Enable multiple cores options PLATFORM options PLATFORM_SMP options MULTIDELAY +options LINUX_BOOT_ABI # EXT_RESOURCES pseudo devices options EXT_RESOURCES @@ -62,6 +64,7 @@ device gic device generic_timer # MMC/SD/SDIO Card slot support +device sdhci # SD controller device mmc # mmc/sd bus device mmcsd # mmc/sd flash cards @@ -69,6 +72,13 @@ device mmcsd # mmc/sd flash cards device ahci # AHCI-compatible SATA controllers #device ata # Legacy ATA/SATA controllers +# PCI +options NEW_PCIB +device pci + +# PCI NICs +device re # RealTek 8139C+/8169/8169S/8110S + # VirtIO device virtio device virtio_mmio @@ -77,11 +87,12 @@ device vtnet # Console and misc device uart +device uart_ns8250 device uart_snps device pl011 device pty device snp -device md +device md # Memory "disks" device random # Entropy device device psci @@ -92,6 +103,7 @@ device twsi device rsb device axp209 # AXP209 Power Management Unit device axp81x # AXP813/818 Power Management Unit +device icee # GPIO device gpio @@ -99,6 +111,7 @@ device gpioled device scbus # SCSI bus (required for ATA/SCSI) device da # Direct Access (disks) +device cd # CD device pass # Passthrough device (direct ATA/SCSI access) # USB support @@ -108,11 +121,14 @@ device usb device ohci device ehci -device umass +device umass # Disks/Mass storage - Requires scbus and da +device uhid # "Human Interface Devices" +device ukbd # Allow keyboard like HIDs to control console # Ethernet device loop device ether +device vlan # 802.1Q VLAN support device mii device bpf