summaryrefslogtreecommitdiff
path: root/sys/modules/scc
Commit message (Collapse)AuthorAgeFilesLines
* Kill MFILES and find things automatically. It turned out to be onlyWarner Losh2015-07-031-3/+0
| | | | | | | | | | | | lightly used. Find the proper .m file when we depend on *_if.[ch] in the srcs line, with seat-belts for false positive matches. This uses make's path mechanism. A further refinement would be to calculate this once, and then pass the resulting _MPATH to modules submakes. Differential Revision: https://reviews.freebsd.org/D2327 Notes: svn path=/head/; revision=285068
* Fix the scc(4) module build. Without the file it's missing a required symbol.Justin Hibbits2012-02-261-1/+1
| | | | | | | | Approved by: nwhitehorn (mentor) MFC after: 3 days Notes: svn path=/head/; revision=232176
* MFtbemd: use MACHINE_CPUARCHWarner Losh2010-09-131-1/+1
| | | | Notes: svn path=/head/; revision=212523
* Don't build unused SBus front-ends for sun4v, don't build EBus front-endsMarius Strobl2008-05-041-1/+1
| | | | | | | | | | | which are also likely to be irrelevant for sun4v (there's no SBus on sun4v and only some EBus devices). While at it fix some style bugs according to style.Makefile(5) where appropriate. MFC after: 3 days Notes: svn path=/head/; revision=178762
* Include the QUICC bus front-end in the module for PowerPC.Marcel Moolenaar2008-04-261-1/+1
| | | | Notes: svn path=/head/; revision=178601
* Build the scc(4) module with EBus and SBus attachments for sparc64Marcel Moolenaar2006-04-011-2/+8
| | | | | | | only and build the scc(4) module with MacIO attachment for powerpc. Notes: svn path=/head/; revision=157353
* Add scc(4), a driver for serial communications controllers. TheseMarcel Moolenaar2006-03-301-0/+14
controllers typically have multiple channels and support a number of serial communications protocols. The scc(4) driver is itself an umbrella driver that delegates the control over each channel and mode to a subordinate driver (like uart(4)). The scc(4) driver supports the Siemens SAB 82532 and the Zilog Z8530 and replaces puc(4) for these devices. Notes: svn path=/head/; revision=157299