forked from Qortal/Brooklyn
* NVME, SATA NAND Security added * Qortal Core exception fetcher is now redone. * Update DT overlays for firmware * Fix for bvb clockj settings * Fix for no audio for sissy desktop porn watchers -_- ( thanks crowetic for watching gay porn and reporting me that bug asshat ) * Normalize the fetch() stream while doing a peer to peer handshake for nodes * Fix for RNG token editing error while performing a SHA256 encryption * Now under voltage errors will blink red led constantly for 5 minutes then go solid. * Improve kernel thread scaling for Qortal 2.0 core * HDMI circuit is now enabled at power up instead. * Added KMS * Added line replication instead of interpolation for VC4 GPU resulting in slightly better frame rates * Fix for long and doubles * Backplane clock is now set at standard rate * Capped HVEC clocks * Add support for Creative Cinema webcam for donkers who like sharing dick pics. *looks at crowetic* * More scanline XGA modes for people who have weird ass monitors of all sorts. * TX/RX flow control support is now 100% stable. No lags over 1Gbps ethernet. ( Hello Qortal 3.0 ) * Using flush cache instead of fetch for QC 2.0 resulting in performance gains * VC4 clock is now enforced for desktop oriented images. * Ondemand governor now waits for 2 seconds instead of 0.5ms to scale down to the lowest safest clock freq preventing lags to the core. * Timeout of OC set at 35ms from 90ms resulting in way better clocks and sync for Qortal 2.0 core
61 lines
1.8 KiB
C
61 lines
1.8 KiB
C
/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
|
|
/*
|
|
* Microsemi Ocelot Switch driver
|
|
*
|
|
* License: Dual MIT/GPL
|
|
* Copyright (c) 2017 Microsemi Corporation
|
|
* Copyright 2020 NXP
|
|
*/
|
|
|
|
#ifndef _MSCC_OCELOT_PTP_H_
|
|
#define _MSCC_OCELOT_PTP_H_
|
|
|
|
#include <linux/ptp_clock_kernel.h>
|
|
#include <soc/mscc/ocelot.h>
|
|
|
|
#define OCELOT_MAX_PTP_ID 63
|
|
#define OCELOT_PTP_FIFO_SIZE 128
|
|
|
|
#define PTP_PIN_CFG_RSZ 0x20
|
|
#define PTP_PIN_TOD_SEC_MSB_RSZ PTP_PIN_CFG_RSZ
|
|
#define PTP_PIN_TOD_SEC_LSB_RSZ PTP_PIN_CFG_RSZ
|
|
#define PTP_PIN_TOD_NSEC_RSZ PTP_PIN_CFG_RSZ
|
|
#define PTP_PIN_WF_HIGH_PERIOD_RSZ PTP_PIN_CFG_RSZ
|
|
#define PTP_PIN_WF_LOW_PERIOD_RSZ PTP_PIN_CFG_RSZ
|
|
|
|
#define PTP_PIN_CFG_DOM BIT(0)
|
|
#define PTP_PIN_CFG_SYNC BIT(2)
|
|
#define PTP_PIN_CFG_ACTION(x) ((x) << 3)
|
|
#define PTP_PIN_CFG_ACTION_MASK PTP_PIN_CFG_ACTION(0x7)
|
|
|
|
enum {
|
|
PTP_PIN_ACTION_IDLE = 0,
|
|
PTP_PIN_ACTION_LOAD,
|
|
PTP_PIN_ACTION_SAVE,
|
|
PTP_PIN_ACTION_CLOCK,
|
|
PTP_PIN_ACTION_DELTA,
|
|
PTP_PIN_ACTION_NOSYNC,
|
|
PTP_PIN_ACTION_SYNC,
|
|
};
|
|
|
|
#define PTP_CFG_MISC_PTP_EN BIT(2)
|
|
|
|
#define PTP_CFG_CLK_ADJ_CFG_ENA BIT(0)
|
|
#define PTP_CFG_CLK_ADJ_CFG_DIR BIT(1)
|
|
|
|
#define PTP_CFG_CLK_ADJ_FREQ_NS BIT(30)
|
|
|
|
int ocelot_ptp_gettime64(struct ptp_clock_info *ptp, struct timespec64 *ts);
|
|
int ocelot_ptp_settime64(struct ptp_clock_info *ptp,
|
|
const struct timespec64 *ts);
|
|
int ocelot_ptp_adjtime(struct ptp_clock_info *ptp, s64 delta);
|
|
int ocelot_ptp_adjfine(struct ptp_clock_info *ptp, long scaled_ppm);
|
|
int ocelot_ptp_verify(struct ptp_clock_info *ptp, unsigned int pin,
|
|
enum ptp_pin_function func, unsigned int chan);
|
|
int ocelot_ptp_enable(struct ptp_clock_info *ptp,
|
|
struct ptp_clock_request *rq, int on);
|
|
int ocelot_init_timestamp(struct ocelot *ocelot,
|
|
const struct ptp_clock_info *info);
|
|
int ocelot_deinit_timestamp(struct ocelot *ocelot);
|
|
#endif
|