4 * Masami Komiya <mkomiya@sonare.it> 2005
17 #define SNTP_TIMEOUT 10000UL
19 static int sntp_our_port;
21 static void sntp_send(void)
23 struct sntp_pkt_t pkt;
24 int pktlen = SNTP_PACKET_LEN;
27 debug("%s\n", __func__);
29 memset(&pkt, 0, sizeof(pkt));
31 pkt.li = NTP_LI_NOLEAP;
33 pkt.mode = NTP_MODE_CLIENT;
35 memcpy((char *)net_tx_packet + net_eth_hdr_size() + IP_UDP_HDR_SIZE,
36 (char *)&pkt, pktlen);
38 sntp_our_port = 10000 + (get_timer(0) % 4096);
39 sport = NTP_SERVICE_PORT;
41 net_send_udp_packet(net_server_ethaddr, net_ntp_server, sport,
42 sntp_our_port, pktlen);
45 static void sntp_timeout_handler(void)
48 net_set_state(NETLOOP_FAIL);
52 static void sntp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
53 unsigned src, unsigned len)
55 #ifdef CONFIG_TIMESTAMP
56 struct sntp_pkt_t *rpktp = (struct sntp_pkt_t *)pkt;
61 debug("%s\n", __func__);
63 if (dest != sntp_our_port)
66 #ifdef CONFIG_TIMESTAMP
68 * As the RTC's used in U-Boot support second resolution only
69 * we simply ignore the sub-second field.
71 memcpy(&seconds, &rpktp->transmit_timestamp, sizeof(ulong));
73 rtc_to_tm(ntohl(seconds) - 2208988800UL + net_ntp_time_offset, &tm);
74 #if defined(CONFIG_CMD_DATE)
79 ret = uclass_get_device(UCLASS_RTC, 0, &dev);
81 printf("SNTP: cannot find RTC: err=%d\n", ret);
88 printf("Date: %4d-%02d-%02d Time: %2d:%02d:%02d\n",
89 tm.tm_year, tm.tm_mon, tm.tm_mday,
90 tm.tm_hour, tm.tm_min, tm.tm_sec);
93 net_set_state(NETLOOP_SUCCESS);
98 debug("%s\n", __func__);
100 net_set_timeout_handler(SNTP_TIMEOUT, sntp_timeout_handler);
101 net_set_udp_handler(sntp_handler);
102 memset(net_server_ethaddr, 0, sizeof(net_server_ethaddr));