提交 6f9cc660 编写于 作者: A Anton Vorontsov 提交者: Kim Phillips

mpc83xx: serdes: add forgotten shifts for rfcks

The rfcks should be shifted by 28 bits left. We didn't notice the bug
because we were using only 100MHz clocks (for which rfcks == 0).

Though, for SGMII we'll need 125MHz clocks.
Signed-off-by: NAnton Vorontsov <avorontsov@ru.mvista.com>
Signed-off-by: NKim Phillips <kim.phillips@freescale.com>
上级 55c53198
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
#define FSL_SRDSRSTCTL_RST 0x80000000 #define FSL_SRDSRSTCTL_RST 0x80000000
#define FSL_SRDSRSTCTL_SATA_RESET 0xf #define FSL_SRDSRSTCTL_SATA_RESET 0xf
void fsl_setup_serdes(u32 offset, char proto, char rfcks, char vdd) void fsl_setup_serdes(u32 offset, char proto, u32 rfcks, char vdd)
{ {
void *regs = (void *)CONFIG_SYS_IMMR + offset; void *regs = (void *)CONFIG_SYS_IMMR + offset;
u32 tmp; u32 tmp;
......
...@@ -3,9 +3,9 @@ ...@@ -3,9 +3,9 @@
#include <config.h> #include <config.h>
#define FSL_SERDES_CLK_100 0 #define FSL_SERDES_CLK_100 (0 << 28)
#define FSL_SERDES_CLK_125 1 #define FSL_SERDES_CLK_125 (1 << 28)
#define FSL_SERDES_CLK_150 3 #define FSL_SERDES_CLK_150 (3 << 28)
#define FSL_SERDES_PROTO_SATA 0 #define FSL_SERDES_PROTO_SATA 0
#define FSL_SERDES_PROTO_PEX 1 #define FSL_SERDES_PROTO_PEX 1
#define FSL_SERDES_PROTO_PEX_X2 2 #define FSL_SERDES_PROTO_PEX_X2 2
...@@ -13,9 +13,9 @@ ...@@ -13,9 +13,9 @@
#define FSL_SERDES_VDD_1V 1 #define FSL_SERDES_VDD_1V 1
#ifdef CONFIG_FSL_SERDES #ifdef CONFIG_FSL_SERDES
extern void fsl_setup_serdes(u32 offset, char proto, char rfcks, char vdd); extern void fsl_setup_serdes(u32 offset, char proto, u32 rfcks, char vdd);
#else #else
static void fsl_setup_serdes(u32 offset, char proto, char rfcks, char vdd) {} static void fsl_setup_serdes(u32 offset, char proto, u32 rfcks, char vdd) {}
#endif /* CONFIG_FSL_SERDES */ #endif /* CONFIG_FSL_SERDES */
#endif /* __FSL_SERDES_H */ #endif /* __FSL_SERDES_H */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册