mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 04:00:53 +07:00
6ba5a69ee9
The PRM and CM implicit clockdomains will soon be used by OMAP44xx. So, make them common to OMAP2+ and modify the OMAP4 clockdomains code so use of these clockdomains doesn't crash the system. Signed-off-by: Paul Walmsley <paul@pwsan.com> Cc: Rajendra Nayak <rnayak@ti.com>
25 lines
536 B
C
25 lines
536 B
C
/*
|
|
* 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" },
|
|
};
|