| /* SPDX-License-Identifier: GPL-2.0+ */ |
| * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc |
| bool mpc83xx_has_sdhc(int type) |
| return (type == SOC_MPC8308) || |
| bool mpc83xx_has_tsec(int type) |
| return (type == SOC_MPC8308) || |
| bool mpc83xx_has_pcie1(int type) |
| return (type == SOC_MPC8308) || |
| bool mpc83xx_has_pcie2(int type) |
| return (type == SOC_MPC8315) || |
| bool mpc83xx_has_sata(int type) |
| return (type == SOC_MPC8315) || |
| bool mpc83xx_has_pci(int type) |
| return type != SOC_MPC8308; |
| bool mpc83xx_has_second_i2c(int type) |
| return (type != SOC_MPC8315) && |
| bool mpc83xx_has_quicc_engine(int type) |
| return (type == SOC_MPC8309) || |
| #endif /* _MPC83XX_SOC_H_ */ |