2020-04-04 18:50:57 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2017-05-05 05:17:45 +02:00
|
|
|
|
2017-08-17 23:15:55 +02:00
|
|
|
#ifndef __STONEYRIDGE_CHIP_H__
|
|
|
|
#define __STONEYRIDGE_CHIP_H__
|
2017-05-05 05:17:45 +02:00
|
|
|
|
2017-11-10 21:16:23 +01:00
|
|
|
#include <stddef.h>
|
2017-05-05 05:17:45 +02:00
|
|
|
#include <stdint.h>
|
2017-11-10 21:16:23 +01:00
|
|
|
#include <commonlib/helpers.h>
|
2018-01-24 22:23:12 +01:00
|
|
|
#include <drivers/i2c/designware/dw_i2c.h>
|
2019-05-02 20:53:00 +02:00
|
|
|
#include <soc/i2c.h>
|
2020-05-02 19:24:23 +02:00
|
|
|
#include <acpi/acpi_device.h>
|
2017-05-05 05:17:45 +02:00
|
|
|
|
2017-09-25 18:00:47 +02:00
|
|
|
#define MAX_NODES 1
|
2019-11-25 19:15:35 +01:00
|
|
|
#if CONFIG(AMD_APU_MERLINFALCON)
|
2019-06-28 18:18:47 +02:00
|
|
|
#define MAX_DRAM_CH 2
|
|
|
|
#define MAX_DIMMS_PER_CH 2
|
2019-11-25 19:15:35 +01:00
|
|
|
#else /* AMD_APU_STONEYRIDGE || AMD_APU_PRAIRIEFALCON */
|
2017-09-25 18:00:47 +02:00
|
|
|
#define MAX_DRAM_CH 1
|
|
|
|
#define MAX_DIMMS_PER_CH 2
|
2019-06-28 18:18:47 +02:00
|
|
|
#endif
|
2017-09-25 18:00:47 +02:00
|
|
|
|
2018-01-24 22:23:12 +01:00
|
|
|
#define STONEY_I2C_DEV_MAX 4
|
|
|
|
|
2017-06-15 20:17:38 +02:00
|
|
|
struct soc_amd_stoneyridge_config {
|
2017-11-16 18:01:08 +01:00
|
|
|
u8 spd_addr_lookup[MAX_NODES][MAX_DRAM_CH][MAX_DIMMS_PER_CH];
|
2017-11-10 00:04:35 +01:00
|
|
|
enum {
|
|
|
|
DRAM_CONTENTS_KEEP,
|
|
|
|
DRAM_CONTENTS_CLEAR
|
|
|
|
} dram_clear_on_reset;
|
2017-11-10 21:16:23 +01:00
|
|
|
|
|
|
|
enum {
|
|
|
|
/* Do not enable UMA in the system. */
|
|
|
|
UMAMODE_NONE,
|
|
|
|
/* Enable UMA with a specific size. */
|
|
|
|
UMAMODE_SPECIFIED_SIZE,
|
|
|
|
/* Let AGESA determine the proper size. Non-legacy requires
|
|
|
|
* the resolution to be specified PLATFORM_CONFIGURATION */
|
|
|
|
UMAMODE_AUTO_LEGACY,
|
|
|
|
UMAMODE_AUTO_NON_LEGACY,
|
|
|
|
} uma_mode;
|
|
|
|
|
|
|
|
/* Used if UMAMODE_SPECIFIED_SIZE is set. */
|
|
|
|
size_t uma_size;
|
2018-01-24 22:23:12 +01:00
|
|
|
|
2018-09-11 20:36:38 +02:00
|
|
|
/*
|
2021-03-09 07:23:50 +01:00
|
|
|
* If sb_reset_i2c_peripherals() is called, this devicetree register
|
2018-09-11 20:36:38 +02:00
|
|
|
* defines which I2C SCL will be toggled 9 times at 100 KHz.
|
2021-03-09 07:23:50 +01:00
|
|
|
* For example, should we need I2C0 and I2C3 have their peripheral
|
2018-09-11 20:36:38 +02:00
|
|
|
* devices reseted by toggling SCL, use:
|
|
|
|
*
|
|
|
|
* register i2c_scl_reset = (GPIO_I2C0_SCL | GPIO_I2C3_SCL)
|
|
|
|
*/
|
|
|
|
u8 i2c_scl_reset;
|
2018-01-24 22:23:12 +01:00
|
|
|
struct dw_i2c_bus_config i2c[STONEY_I2C_DEV_MAX];
|
2018-09-10 22:42:00 +02:00
|
|
|
u8 stapm_percent;
|
2018-10-11 17:15:43 +02:00
|
|
|
u32 stapm_time_ms;
|
|
|
|
u32 stapm_power_mw;
|
2018-11-05 05:09:24 +01:00
|
|
|
/*
|
|
|
|
* This specifies the LVDS/eDP power-up sequence time for the delay
|
|
|
|
* between VaryBL and BLON.
|
|
|
|
* 0 - Use the VBIOS default (default). The video BIOS default is 32ms.
|
|
|
|
* n - Values other than zero specify a setting of (4 * n) milliseconds
|
|
|
|
* time delay.
|
|
|
|
*/
|
|
|
|
u8 lvds_poseq_varybl_to_blon;
|
|
|
|
u8 lvds_poseq_blon_to_varybl;
|
2017-05-05 05:17:45 +02:00
|
|
|
};
|
|
|
|
|
2017-08-17 23:15:55 +02:00
|
|
|
#endif /* __STONEYRIDGE_CHIP_H__ */
|