-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'omap-devel-a-for-3.5' of git://git.kernel.org/pub/scm/linu…
…x/kernel/git/pjw/omap-pending into devel-hwmod Add in most of the remaining hwmods (IP block descriptions) for the OMAP44xx family of SoCs. There still seem to be a few missing, such as those for the MMU IP blocks, but this seems to cover the bulk of the remainder.
- Loading branch information
Showing
7 changed files
with
1,463 additions
and
92 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
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,24 @@ | ||
/* | ||
* OMAP2+-common clockdomain data | ||
* | ||
* Copyright (C) 2008-2012 Texas Instruments, Inc. | ||
* Copyright (C) 2008-2010 Nokia Corporation | ||
* | ||
* Paul Walmsley, Jouni Högander | ||
*/ | ||
|
||
#include <linux/kernel.h> | ||
#include <linux/io.h> | ||
|
||
#include "clockdomain.h" | ||
|
||
/* These are implicit clockdomains - they are never defined as such in TRM */ | ||
struct clockdomain prm_common_clkdm = { | ||
.name = "prm_clkdm", | ||
.pwrdm = { .name = "wkup_pwrdm" }, | ||
}; | ||
|
||
struct clockdomain cm_common_clkdm = { | ||
.name = "cm_clkdm", | ||
.pwrdm = { .name = "core_pwrdm" }, | ||
}; |
Oops, something went wrong.