mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-08 07:13:06 +00:00
Changes included (and more): 1. Dynamic RAM merge 2. Real-time page scan and allocation 3. Cache compression 4. Real-time IRQ checks 5. Dynamic I/O allocation for Java heap 6. Java page migration 7. Contiguous memory allocation 8. Idle pages tracking 9. Per CPU RAM usage tracking 10. ARM NEON scalar multiplication library 11. NEON/ARMv8 crypto extensions 12. NEON SHA, Blake, RIPEMD crypto extensions 13. Parallel NEON crypto engine for multi-algo based CPU stress reduction
23 lines
650 B
C
23 lines
650 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2012-2020, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _DP_AUX_H_
|
|
#define _DP_AUX_H_
|
|
|
|
#include "dp_catalog.h"
|
|
#include <drm/dp/drm_dp_helper.h>
|
|
|
|
int dp_aux_register(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_unregister(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_isr(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_init(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_deinit(struct drm_dp_aux *dp_aux);
|
|
void dp_aux_reconfig(struct drm_dp_aux *dp_aux);
|
|
|
|
struct drm_dp_aux *dp_aux_get(struct device *dev, struct dp_catalog *catalog);
|
|
void dp_aux_put(struct drm_dp_aux *aux);
|
|
|
|
#endif /*__DP_AUX_H_*/
|