mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 19:36:44 +07:00
7b42a997bf
The R8A7779 SoC has several clocks that are too custom to be supported in a generic driver. Those clocks are all fixed rate clocks with multiplier and divisor set according to boot mode configuration. Based on work for R-Car Gen2 SoCs by Laurent Pinchart. Cc: devicetree@vger.kernel.org Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Simon Horman <horms+renesas@verge.net.au> Signed-off-by: Mike Turquette <mturquette@linaro.org>
23 lines
633 B
C
23 lines
633 B
C
/*
|
|
* Copyright 2013 Ideas On Board SPRL
|
|
* Copyright 2013, 2014 Horms Solutions Ltd.
|
|
*
|
|
* Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
* Contact: Simon Horman <horms@verge.net.au>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef __LINUX_CLK_SHMOBILE_H_
|
|
#define __LINUX_CLK_SHMOBILE_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
void r8a7779_clocks_init(u32 mode);
|
|
void rcar_gen2_clocks_init(u32 mode);
|
|
|
|
#endif
|