/* SPDX-License-Identifier: GPL-2.0-only */1/*2* OMAP4 Clock Management (CM) definitions3*4* Copyright (C) 2007-2011 Texas Instruments, Inc.5* Copyright (C) 2007-2009 Nokia Corporation6*7* Written by Paul Walmsley8*9* OMAP4 has two separate CM blocks, CM1 and CM2. This file contains10* macros and function prototypes that are applicable to both.11*/12#ifndef __ARCH_ASM_MACH_OMAP2_CM44XX_H13#define __ARCH_ASM_MACH_OMAP2_CM44XX_H141516#include "prcm-common.h"17#include "cm.h"1819#define OMAP4_CM_CLKSTCTRL 0x000020#define OMAP4_CM_STATICDEP 0x00042122int omap4_cm_init(const struct omap_prcm_init_data *data);2324#endif252627