soc/amd/morgana/i2c: Remove to-do after review
Reviewed files and values match morgana ppr #57396, rev 1.52 Signed-off-by: Fred Reitberger <reitbergerfred@gmail.com> Change-Id: I9d058b0f61b4784a1d83289e75705a6415405d0b Reviewed-on: https://review.coreboot.org/c/coreboot/+/68547 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
parent
164b93bd9c
commit
0d98cc4844
|
@ -1,7 +1,5 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
/* TODO: Update for Morgana */
|
||||
|
||||
#include <amdblocks/i2c.h>
|
||||
#include <console/console.h>
|
||||
#include <soc/i2c.h>
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||
|
||||
/* TODO: Update for Morgana */
|
||||
|
||||
#ifndef AMD_MORGANA_I2C_H
|
||||
#define AMD_MORGANA_I2C_H
|
||||
|
||||
|
@ -12,7 +10,8 @@
|
|||
#define GPIO_I2C1_SCL BIT(1)
|
||||
#define GPIO_I2C2_SCL BIT(2)
|
||||
#define GPIO_I2C3_SCL BIT(3)
|
||||
#define GPIO_I2C_MASK (BIT(0) | BIT(1) | BIT(2) | BIT(3))
|
||||
#define GPIO_I2C_MASK (GPIO_I2C0_SCL | GPIO_I2C1_SCL | \
|
||||
GPIO_I2C2_SCL | GPIO_I2C3_SCL)
|
||||
|
||||
|
||||
#define I2C0_SCL_PIN GPIO_145
|
||||
|
|
Loading…
Reference in New Issue