mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
ada8affdfe
This patch add support of hsdk platform-specific commands: hsdk_clock set - set clock from axi_freq, cpu_freq and tun_freq environment variables/command line arguments hsdk_clock get - save clock frequencies to axi_freq, cpu_freq and tun_freq environment variables hsdk_clock print - show CPU, AXI, DDR and TUNNEL current clock frequencies. hsdk_clock print_all - show all currently used clock frequencies. hsdk_init - setup board HW in one of pre-defined configuration (hsdk_hs34 / hsdk_hs36 / hsdk_hs36_ccm / hsdk_hs38 / hsdk_hs38_ccm / hsdk_hs38x2 / hsdk_hs38x3 / hsdk_hs38x4) hsdk_go - run baremetal application on hsdk configured by hsdk_init command. This patch changes default behaviour of 'bootm' command: now we are able to set number of CPUs to be kicked by setting 'core_mask' environment variable before 'bootm' command run. Signed-off-by: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com> Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
58 lines
1.3 KiB
C
58 lines
1.3 KiB
C
/*
|
|
* Copyright (C) 2018 Synopsys, Inc. All rights reserved.
|
|
* Author: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __BOARD_ENV_LIB_H
|
|
#define __BOARD_ENV_LIB_H
|
|
|
|
#include <common.h>
|
|
#include <config.h>
|
|
#include <linux/kernel.h>
|
|
|
|
enum env_type {
|
|
ENV_DEC,
|
|
ENV_HEX
|
|
};
|
|
|
|
typedef struct {
|
|
u32 val;
|
|
bool set;
|
|
} u32_env;
|
|
|
|
struct env_map_common {
|
|
const char *const env_name;
|
|
enum env_type type;
|
|
bool mandatory;
|
|
u32 min;
|
|
u32 max;
|
|
u32_env *val;
|
|
};
|
|
|
|
struct env_map_percpu {
|
|
const char *const env_name;
|
|
enum env_type type;
|
|
bool mandatory;
|
|
u32 min[NR_CPUS];
|
|
u32 max[NR_CPUS];
|
|
u32_env (*val)[NR_CPUS];
|
|
};
|
|
|
|
void envs_cleanup_common(const struct env_map_common *map);
|
|
int envs_read_common(const struct env_map_common *map);
|
|
int envs_validate_common(const struct env_map_common *map);
|
|
int envs_read_validate_common(const struct env_map_common *map);
|
|
|
|
void envs_cleanup_core(const struct env_map_percpu *map);
|
|
int envs_read_validate_core(const struct env_map_percpu *map,
|
|
bool (*cpu_used)(u32));
|
|
int envs_process_and_validate(const struct env_map_common *common,
|
|
const struct env_map_percpu *core,
|
|
bool (*cpu_used)(u32));
|
|
|
|
int args_envs_enumerate(const struct env_map_common *map,
|
|
int enum_by, int argc, char *const argv[]);
|
|
|
|
#endif /* __BOARD_ENV_LIB_H */
|