forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
misc: Add iop driver for Sunplus SP7021
Add iop driver for Sunplus SP7021 Signed-off-by: Tony Huang <tony.huang@sunplus.com>
- Loading branch information
1 parent
9031040
commit 0b52ba2fcf62ee9a39d385e15fd7fccacafb2895
Showing
13 changed files
with
6,446 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # SPDX-License-Identifier: GPL-2.0-only | ||
| # | ||
| # IOP configuration | ||
| # | ||
|
|
||
| config SUNPLUS_IOP | ||
| tristate "Sunplus IOP support" | ||
| default ARCH_SUNPLUS | ||
| help | ||
| Sunplus I/O processor (8051) driver. | ||
| Processor for I/O control, RTC wake-up proceduce management, | ||
| and cooperation with CPU&PMC in power management. | ||
| Need Install DQ8051, The DQ8051 bin file generated by keil C. | ||
|
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # | ||
| # Makefile for the IOP module drivers. | ||
| # | ||
|
|
||
| # call from kernel build system | ||
|
|
||
| obj-$(CONFIG_SUNPLUS_IOP) += sunplus_iop.o | ||
| obj-$(CONFIG_SUNPLUS_IOP) += hal_iop.o | ||
| obj-$(CONFIG_SUNPLUS_IOP) += iopnormal.o | ||
| obj-$(CONFIG_SUNPLUS_IOP) += iopstandby.o | ||
|
|
||
| clean: | ||
| rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions |
Oops, something went wrong.