Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
22fc1db1
Commit
22fc1db1
authored
Feb 19, 2009
by
Nicolas Pitre
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-np' of
git://git.wormnet.eu/alex/ts78xx
into orion/master
parents
402a917a
39008f95
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
231 additions
and
109 deletions
+231
-109
arch/arm/configs/orion5x_defconfig
arch/arm/configs/orion5x_defconfig
+1
-1
arch/arm/mach-orion5x/Kconfig
arch/arm/mach-orion5x/Kconfig
+1
-0
arch/arm/mach-orion5x/ts78xx-fpga.h
arch/arm/mach-orion5x/ts78xx-fpga.h
+27
-0
arch/arm/mach-orion5x/ts78xx-setup.c
arch/arm/mach-orion5x/ts78xx-setup.c
+202
-108
No files found.
arch/arm/configs/orion5x_defconfig
View file @
22fc1db1
...
...
@@ -1177,7 +1177,7 @@ CONFIG_RTC_DRV_S35390A=y
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
CONFIG_RTC_DRV_M48T86=y
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_V3020 is not set
...
...
arch/arm/mach-orion5x/Kconfig
View file @
22fc1db1
...
...
@@ -71,6 +71,7 @@ config MACH_WRT350N_V2
config MACH_TS78XX
bool "Technologic Systems TS-78xx"
select PM
help
Say 'Y' here if you want your kernel to support the
Technologic Systems TS-78xx platform.
...
...
arch/arm/mach-orion5x/ts78xx-fpga.h
0 → 100644
View file @
22fc1db1
#define FPGAID(_magic, _rev) ((_magic << 8) + _rev)
/*
* get yer id's from http://ts78xx.digriz.org.uk/
* do *not* make up your own or 'borrow' any!
*/
enum
fpga_ids
{
/* Technologic Systems */
TS7800_REV_B
=
FPGAID
(
0x00b480
,
0x03
),
};
struct
fpga_device
{
unsigned
present
:
1
;
unsigned
init
:
1
;
};
struct
fpga_devices
{
/* Technologic Systems */
struct
fpga_device
ts_rtc
;
};
struct
ts78xx_fpga_data
{
unsigned
int
id
;
int
state
;
struct
fpga_devices
supports
;
};
arch/arm/mach-orion5x/ts78xx-setup.c
View file @
22fc1db1
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment