summaryrefslogtreecommitdiffstats
path: root/sys/arm/ti/ti_mbox.c
diff options
context:
space:
mode:
authorgonzo <gonzo@FreeBSD.org>2015-05-22 03:16:18 +0000
committergonzo <gonzo@FreeBSD.org>2015-05-22 03:16:18 +0000
commitef6ca4337dbbc940f520cf42fcbaa689ee676850 (patch)
tree23662d9a59f877c1e1e89abf4736479e17c8ecff /sys/arm/ti/ti_mbox.c
parent721376a5c9d5d2b8efdd1a396039113b3030ba73 (diff)
downloadFreeBSD-src-ef6ca4337dbbc940f520cf42fcbaa689ee676850.zip
FreeBSD-src-ef6ca4337dbbc940f520cf42fcbaa689ee676850.tar.gz
Switch TI platform support code from using FreeBSD's custom-baked DTS
files to vendor-provided ones. It should make easier to adopt platform code to new revisions of hardware and to use DTS overlays for various Beaglebone extensions (shields/capes). Original dts filenames were not changed, they're now wrappers over dts files provided by TI. So make sure you update .dtb files on your devices as part of kernel update GPIO addressing was changed: instead of one global /dev/gpioc0 there are per-bank instances of /dev/gpiocX. Each bank has 32 pins so for instance pin 121 on /dev/gpioc0 in old addressing scheme is now pin 25 on /dev/gpioc3 On Pandaboard serial console devices was changed from /dev/ttyu0 to /dev/ttyu2 so you'll have to update /etc/ttys to get login prompt on serial port in multiuser mode. Single user mode serial console should work as-is Differential Revision: https://reviews.freebsd.org/D2146 Reviewed by: rpaulo, ian, Michal Meloun, Svatopluk Kraus
Diffstat (limited to 'sys/arm/ti/ti_mbox.c')
-rw-r--r--sys/arm/ti/ti_mbox.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/ti/ti_mbox.c b/sys/arm/ti/ti_mbox.c
index 1f8cde1..9729ed4 100644
--- a/sys/arm/ti/ti_mbox.c
+++ b/sys/arm/ti/ti_mbox.c
@@ -121,7 +121,7 @@ ti_mbox_probe(device_t dev)
if (!ofw_bus_status_okay(dev))
return (ENXIO);
- if (ofw_bus_is_compatible(dev, "ti,system-mbox")) {
+ if (ofw_bus_is_compatible(dev, "ti,omap4-mailbox")) {
device_set_desc(dev, "TI System Mailbox");
return (BUS_PROBE_DEFAULT);
}
OpenPOWER on IntegriCloud