| OLD | NEW |
| (Empty) |
| 1 /* | |
| 2 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved. | |
| 3 * Use of this source code is governed by a BSD-style license that can be | |
| 4 * found in the LICENSE file. | |
| 5 */ | |
| 6 | |
| 7 /* this macro enable tlcl stub to call real hardware functions */ | |
| 8 #define CONFIG_HARDWARE_TPM | |
| 9 | |
| 10 /* config for infineon prototype i2c tpm chip */ | |
| 11 #define CONFIG_INFINEON_TPM_I2C | |
| 12 #define CONFIG_INFINEON_TPM_I2C_BUS 2 | |
| 13 | |
| 14 /* auto detect all following chips selected below */ | |
| 15 #define CONFIG_TPM_SLB9635_I2C | |
| 16 #define CONFIG_TPM_SLB9635_I2C_V03 | |
| 17 | |
| 18 /* limit burst write to tpm chip on i2c */ | |
| 19 #define CONFIG_TPM_I2C_BURST_LIMITATION 3 | |
| OLD | NEW |