blob: 1b7381da5e4ae0898e169831e025763226213cba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <device/mmio.h>
#include <intelblocks/cfg.h>
#include <intelblocks/pmclib.h>
#include <intelpch/lockdown.h>
#include <soc/pm.h>
void soc_lockdown_config(int chipset_lockdown)
{
/*
* Nothing to do here as pmc_global_reset_disable_and_lock
* is called from chip.c
*/
}
|