Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20 lines
518 B
C
20 lines
518 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* ST PCIe driver definitions for STM32-MP25 SoC
|
|
*
|
|
* Copyright (C) 2025 STMicroelectronics - All Rights Reserved
|
|
* Author: Christian Bruel <christian.bruel@foss.st.com>
|
|
*/
|
|
|
|
#include <linux/bits.h>
|
|
#include <linux/device.h>
|
|
|
|
#define to_stm32_pcie(x) dev_get_drvdata((x)->dev)
|
|
|
|
#define STM32MP25_PCIECR_TYPE_MASK GENMASK(11, 8)
|
|
#define STM32MP25_PCIECR_EP 0
|
|
#define STM32MP25_PCIECR_LTSSM_EN BIT(2)
|
|
#define STM32MP25_PCIECR_RC BIT(10)
|
|
|
|
#define SYSCFG_PCIECR 0x6000
|