Tegra: common: fix defects flagged by MISRA scan

Macro assert(e) request 'e' is a bool type, if useing other
type, MISRA report a "The Essential Type Model" violation,
Add a judgement to fix the defects, if 'e' is not bool type.

Remove unused code [Rule 2.5]
Fix the essential type model violation [Rule 10.6, 10.7]
Use local parameter to raplace function parameter [Rule 17.8]

Change-Id: Ifce932addbb0a4b063ef6b38349d886c051d81c0
Signed-off-by: Anthony Zhou <anzhou@nvidia.com>
This commit is contained in:
Anthony Zhou 2017-07-07 14:29:51 +08:00 committed by Varun Wadekar
parent 75516c3eb0
commit 4c99400228
7 changed files with 17 additions and 20 deletions

View File

@ -293,7 +293,7 @@ static void tegra_memctrl_set_overrides(void)
uint32_t i, val; uint32_t i, val;
/* Get the settings from the platform */ /* Get the settings from the platform */
assert(plat_mc_settings); assert(plat_mc_settings != NULL);
mc_txn_override_cfgs = plat_mc_settings->txn_override_cfg; mc_txn_override_cfgs = plat_mc_settings->txn_override_cfg;
num_txn_override_cfgs = plat_mc_settings->num_txn_override_cfgs; num_txn_override_cfgs = plat_mc_settings->num_txn_override_cfgs;
@ -357,7 +357,7 @@ void tegra_memctrl_setup(void)
tegra_smmu_init(); tegra_smmu_init();
#endif #endif
/* Get the settings from the platform */ /* Get the settings from the platform */
assert(plat_mc_settings); assert(plat_mc_settings != NULL);
mc_streamid_override_regs = plat_mc_settings->streamid_override_cfg; mc_streamid_override_regs = plat_mc_settings->streamid_override_cfg;
num_streamid_override_regs = plat_mc_settings->num_streamid_override_cfgs; num_streamid_override_regs = plat_mc_settings->num_streamid_override_cfgs;
mc_streamid_sec_cfgs = plat_mc_settings->streamid_security_cfg; mc_streamid_sec_cfgs = plat_mc_settings->streamid_security_cfg;

View File

@ -94,7 +94,7 @@ void tegra_smmu_save_context(uint64_t smmu_ctx_addr)
/* get SMMU context table */ /* get SMMU context table */
smmu_ctx_regs = plat_get_smmu_ctx(); smmu_ctx_regs = plat_get_smmu_ctx();
assert(smmu_ctx_regs); assert(smmu_ctx_regs != NULL);
/* /*
* smmu_ctx_regs[0].val contains the size of the context table minus * smmu_ctx_regs[0].val contains the size of the context table minus

View File

@ -143,8 +143,8 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
* Copy BL3-3, BL3-2 entry point information. * Copy BL3-3, BL3-2 entry point information.
* They are stored in Secure RAM, in BL2's address space. * They are stored in Secure RAM, in BL2's address space.
*/ */
assert(arg_from_bl2); assert(arg_from_bl2 != NULL);
assert(arg_from_bl2->bl33_ep_info); assert(arg_from_bl2->bl33_ep_info != NULL);
bl33_image_ep_info = *arg_from_bl2->bl33_ep_info; bl33_image_ep_info = *arg_from_bl2->bl33_ep_info;
if (arg_from_bl2->bl32_ep_info != NULL) { if (arg_from_bl2->bl32_ep_info != NULL) {
@ -156,7 +156,7 @@ void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
/* /*
* Parse platform specific parameters - TZDRAM aperture base and size * Parse platform specific parameters - TZDRAM aperture base and size
*/ */
assert(plat_params); assert(plat_params != NULL);
plat_bl31_params_from_bl2.tzdram_base = plat_params->tzdram_base; plat_bl31_params_from_bl2.tzdram_base = plat_params->tzdram_base;
plat_bl31_params_from_bl2.tzdram_size = plat_params->tzdram_size; plat_bl31_params_from_bl2.tzdram_size = plat_params->tzdram_size;
plat_bl31_params_from_bl2.uart_id = plat_params->uart_id; plat_bl31_params_from_bl2.uart_id = plat_params->uart_id;

View File

@ -65,7 +65,7 @@ static uint64_t tegra_fiq_interrupt_handler(uint32_t id,
* Set the new ELR to continue execution in the NS world using the * Set the new ELR to continue execution in the NS world using the
* FIQ handler registered earlier. * FIQ handler registered earlier.
*/ */
assert(ns_fiq_handler_addr); assert(ns_fiq_handler_addr != 0ULL);
write_ctx_reg((el3state_ctx), (uint32_t)(CTX_ELR_EL3), (ns_fiq_handler_addr)); write_ctx_reg((el3state_ctx), (uint32_t)(CTX_ELR_EL3), (ns_fiq_handler_addr));
/* /*

View File

@ -15,7 +15,7 @@
* Tegra platforms * Tegra platforms
******************************************************************************/ ******************************************************************************/
typedef enum tegra_platform { typedef enum tegra_platform {
TEGRA_PLATFORM_SILICON = 0, TEGRA_PLATFORM_SILICON = 0U,
TEGRA_PLATFORM_QT, TEGRA_PLATFORM_QT,
TEGRA_PLATFORM_FPGA, TEGRA_PLATFORM_FPGA,
TEGRA_PLATFORM_EMULATION, TEGRA_PLATFORM_EMULATION,
@ -83,7 +83,7 @@ bool tegra_chipid_is_t132(void)
{ {
uint32_t chip_id = ((tegra_get_chipid() >> CHIP_ID_SHIFT) & CHIP_ID_MASK); uint32_t chip_id = ((tegra_get_chipid() >> CHIP_ID_SHIFT) & CHIP_ID_MASK);
return (chip_id == (uint32_t)TEGRA_CHIPID_TEGRA13); return (chip_id == TEGRA_CHIPID_TEGRA13);
} }
bool tegra_chipid_is_t186(void) bool tegra_chipid_is_t186(void)
@ -97,12 +97,12 @@ bool tegra_chipid_is_t210(void)
{ {
uint32_t chip_id = (tegra_get_chipid() >> CHIP_ID_SHIFT) & CHIP_ID_MASK; uint32_t chip_id = (tegra_get_chipid() >> CHIP_ID_SHIFT) & CHIP_ID_MASK;
return (chip_id == (uint32_t)TEGRA_CHIPID_TEGRA21); return (chip_id == TEGRA_CHIPID_TEGRA21);
} }
bool tegra_chipid_is_t210_b01(void) bool tegra_chipid_is_t210_b01(void)
{ {
return (tegra_chipid_is_t210() && (tegra_get_chipid_major() == 0x2UL)); return (tegra_chipid_is_t210() && (tegra_get_chipid_major() == 0x2U));
} }
/* /*

View File

@ -106,7 +106,7 @@ plat_local_state_t tegra_soc_get_target_pwr_state(uint32_t lvl,
(void)lvl; (void)lvl;
assert(ncpu); assert(ncpu != 0U);
do { do {
temp = *local_state; temp = *local_state;
@ -335,7 +335,7 @@ __dead2 void tegra_system_reset(void)
int32_t tegra_validate_power_state(uint32_t power_state, int32_t tegra_validate_power_state(uint32_t power_state,
psci_power_state_t *req_state) psci_power_state_t *req_state)
{ {
assert(req_state); assert(req_state != NULL);
return tegra_soc_validate_power_state(power_state, req_state); return tegra_soc_validate_power_state(power_state, req_state);
} }

View File

@ -69,7 +69,7 @@ uintptr_t tegra_sip_handler(uint32_t smc_fid,
void *handle, void *handle,
u_register_t flags) u_register_t flags)
{ {
uint32_t regval; uint32_t regval, local_x2_32 = (uint32_t)x2;
int32_t err; int32_t err;
/* Check if this is a SoC specific SiP */ /* Check if this is a SoC specific SiP */
@ -84,14 +84,11 @@ uintptr_t tegra_sip_handler(uint32_t smc_fid,
case TEGRA_SIP_NEW_VIDEOMEM_REGION: case TEGRA_SIP_NEW_VIDEOMEM_REGION:
/* clean up the high bits */
x2 = (uint32_t)x2;
/* /*
* Check if Video Memory overlaps TZDRAM (contains bl31/bl32) * Check if Video Memory overlaps TZDRAM (contains bl31/bl32)
* or falls outside of the valid DRAM range * or falls outside of the valid DRAM range
*/ */
err = bl31_check_ns_address(x1, x2); err = bl31_check_ns_address(x1, local_x2_32);
if (err != 0) { if (err != 0) {
SMC_RET1(handle, (uint64_t)err); SMC_RET1(handle, (uint64_t)err);
} }
@ -99,7 +96,7 @@ uintptr_t tegra_sip_handler(uint32_t smc_fid,
/* /*
* Check if Video Memory is aligned to 1MB. * Check if Video Memory is aligned to 1MB.
*/ */
if (((x1 & 0xFFFFFU) != 0U) || ((x2 & 0xFFFFFU) != 0U)) { if (((x1 & 0xFFFFFU) != 0U) || ((local_x2_32 & 0xFFFFFU) != 0U)) {
ERROR("Unaligned Video Memory base address!\n"); ERROR("Unaligned Video Memory base address!\n");
SMC_RET1(handle, -ENOTSUP); SMC_RET1(handle, -ENOTSUP);
} }
@ -117,7 +114,7 @@ uintptr_t tegra_sip_handler(uint32_t smc_fid,
} }
/* new video memory carveout settings */ /* new video memory carveout settings */
tegra_memctrl_videomem_setup(x1, (uint32_t)x2); tegra_memctrl_videomem_setup(x1, local_x2_32);
SMC_RET1(handle, 0); SMC_RET1(handle, 0);