aboutsummaryrefslogtreecommitdiff
path: root/sys/modules/scc
Commit message (Collapse)AuthorAgeFilesLines
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-231-1/+0
| | | | | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/ Similar commit in current: (cherry picked from commit 031beb4e239b)
* scc(4)/uart(4): Remove obsolete support for Siemens SAB 82532Marius Strobl2020-12-261-1/+1
| | | | | It's no longer used since 58aa35d42975c298ca0adba705c042596303c9f5 and r357455 respectively.
* Remove sparc64 kernel supportWarner Losh2020-02-031-3/+0
| | | | | | | | | Remove all sparc64 specific files Remove all sparc64 ifdefs Removee indireeect sparc64 ifdefs Notes: svn path=/head/; revision=357455
* sys/modules: normalize .CURDIR-relative paths to SRCTOPEnji Cooper2017-03-041-1/+1
| | | | | | | | | | | This simplifies make output/logic Tested with: `cd sys/modules; make ALL_MODULES=` on amd64 MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314651
* 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