mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
f411bfdab1
PD#SWPL-119464 Problem: when iotrace driver build to ko, it has some register r/w operation not be hooked Solution: hook regmap r/w operation when iotrace build to ko Verify: SC2_AH212 Change-Id: I763b90fd91e76e5d4138db8ad1d2268c5b33e873 Signed-off-by: song.han <song.han@amlogic.com>
111 lines
2.8 KiB
C
111 lines
2.8 KiB
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __GKI_MODULE_AMLOGIC_H
|
|
#define __GKI_MODULE_AMLOGIC_H
|
|
|
|
#define GKI_MODULE_SETUP_MAGIC1 0x014589cd
|
|
#define GKI_MODULE_SETUP_MAGIC2 0x2367abef
|
|
|
|
struct gki_module_setup_struct {
|
|
/* must be first */
|
|
int magic1;
|
|
int magic2;
|
|
|
|
char *str;
|
|
void *fn;
|
|
int early;
|
|
};
|
|
|
|
struct cmd_param_val {
|
|
char *param;
|
|
char *val;
|
|
};
|
|
|
|
extern struct cmd_param_val *cpv;
|
|
extern int cpv_count;
|
|
|
|
#define __setup_gki_module(str, fn, early) \
|
|
struct gki_module_setup_struct __gki_setup_##fn = \
|
|
{GKI_MODULE_SETUP_MAGIC1, GKI_MODULE_SETUP_MAGIC2, \
|
|
str, fn, early}; \
|
|
EXPORT_SYMBOL(__gki_setup_##fn)
|
|
|
|
static inline unsigned long gki_symbol_value(const struct kernel_symbol *sym)
|
|
{
|
|
#ifdef CONFIG_HAVE_ARCH_PREL32_RELOCATIONS
|
|
const int *off = &sym->value_offset;
|
|
|
|
return (unsigned long)((unsigned long)off + *off);
|
|
#else
|
|
return sym->value;
|
|
#endif
|
|
}
|
|
|
|
#ifdef MODULE
|
|
|
|
#undef __setup
|
|
#undef __setup_param
|
|
#undef early_param
|
|
|
|
#define __setup(str, fn) \
|
|
__setup_gki_module(str, fn, 0)
|
|
|
|
#define early_param(str, fn) \
|
|
__setup_gki_module(str, fn, 1)
|
|
|
|
void __module_init_hook(struct module *m);
|
|
|
|
#define module_init_hook(initfn) \
|
|
int __init init_module(void) \
|
|
{ \
|
|
__module_init_hook(THIS_MODULE); \
|
|
return initfn(); \
|
|
} \
|
|
__CFI_ADDRESSABLE(init_module, __initdata);
|
|
|
|
#undef early_initcall
|
|
#undef core_initcall
|
|
#undef core_initcall_sync
|
|
#undef postcore_initcall
|
|
#undef postcore_initcall_sync
|
|
#undef arch_initcall
|
|
#undef subsys_initcall
|
|
#undef subsys_initcall_sync
|
|
#undef fs_initcall
|
|
#undef fs_initcall_sync
|
|
#undef rootfs_initcall
|
|
#undef device_initcall
|
|
#undef device_initcall_sync
|
|
#undef late_initcall
|
|
#undef late_initcall_sync
|
|
#undef console_initcall
|
|
#undef security_initcall
|
|
|
|
#define early_initcall(fn) module_init_hook(fn)
|
|
#define core_initcall(fn) module_init_hook(fn)
|
|
#define core_initcall_sync(fn) module_init_hook(fn)
|
|
#define postcore_initcall(fn) module_init_hook(fn)
|
|
#define postcore_initcall_sync(fn) module_init_hook(fn)
|
|
#define arch_initcall(fn) module_init_hook(fn)
|
|
#define subsys_initcall(fn) module_init_hook(fn)
|
|
#define subsys_initcall_sync(fn) module_init_hook(fn)
|
|
#define fs_initcall(fn) module_init_hook(fn)
|
|
#define fs_initcall_sync(fn) module_init_hook(fn)
|
|
#define rootfs_initcall(fn) module_init_hook(fn)
|
|
#define device_initcall(fn) module_init_hook(fn)
|
|
#define device_initcall_sync(fn) module_init_hook(fn)
|
|
#define late_initcall(fn) module_init_hook(fn)
|
|
#define late_initcall_sync(fn) module_init_hook(fn)
|
|
#define console_initcall(fn) module_init_hook(fn)
|
|
#define security_initcall(fn) module_init_hook(fn)
|
|
|
|
#undef module_init
|
|
#define module_init(fn) module_init_hook(fn)
|
|
|
|
#endif //MODULE
|
|
|
|
#endif //__GKI_MODULE_AMLOGIC_H
|