mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-01 07:42:18 +00:00
84ba5b15ac
* Enhance GPIO addon for Noctua Fans for the Qortector upcoming case. This will put PWM signal to real-time. * Fixed RDP not letting a user login if not logged out on Cinnamon release (reported by Crowetic) * Update i2c sensor db * Fixed DRM broadcast over HDMI 2+ * Ease up DHCP security only to prevent Brooklyn blocking routers. * Add possibility to add extra memory for Cinnamon Desktop Release * Fix error message of Software Render mode on Cinnamon Desktop * Add proper offset for HD screens for pixel array *Fixed HDMI jitter for videocore4 GPU * Enable all radios (including Bluetooth)
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* TI AM33XX and AM43XX PM Assembly Offsets
|
|
*
|
|
* Copyright (C) 2017-2018 Texas Instruments Inc.
|
|
*/
|
|
|
|
#include <linux/kbuild.h>
|
|
#include <linux/platform_data/pm33xx.h>
|
|
#include <linux/ti-emif-sram.h>
|
|
|
|
int main(void)
|
|
{
|
|
ti_emif_asm_offsets();
|
|
|
|
DEFINE(AMX3_PM_WFI_FLAGS_OFFSET,
|
|
offsetof(struct am33xx_pm_sram_data, wfi_flags));
|
|
DEFINE(AMX3_PM_L2_AUX_CTRL_VAL_OFFSET,
|
|
offsetof(struct am33xx_pm_sram_data, l2_aux_ctrl_val));
|
|
DEFINE(AMX3_PM_L2_PREFETCH_CTRL_VAL_OFFSET,
|
|
offsetof(struct am33xx_pm_sram_data, l2_prefetch_ctrl_val));
|
|
DEFINE(AMX3_PM_SRAM_DATA_SIZE, sizeof(struct am33xx_pm_sram_data));
|
|
|
|
BLANK();
|
|
|
|
DEFINE(AMX3_PM_RO_SRAM_DATA_VIRT_OFFSET,
|
|
offsetof(struct am33xx_pm_ro_sram_data, amx3_pm_sram_data_virt));
|
|
DEFINE(AMX3_PM_RO_SRAM_DATA_PHYS_OFFSET,
|
|
offsetof(struct am33xx_pm_ro_sram_data, amx3_pm_sram_data_phys));
|
|
DEFINE(AMX3_PM_RTC_BASE_VIRT_OFFSET,
|
|
offsetof(struct am33xx_pm_ro_sram_data, rtc_base_virt));
|
|
DEFINE(AMX3_PM_RO_SRAM_DATA_SIZE,
|
|
sizeof(struct am33xx_pm_ro_sram_data));
|
|
|
|
return 0;
|
|
}
|