All of lore.kernel.org
 help / color / mirror / Atom feed
From: Maksim Kozlov <m.kozlov@samsung.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, kyungmin.park@samsung.com
Subject: Re: [Qemu-devel] [PATCH v3 1/2] ARM: exynos4210: CMU support
Date: Wed, 04 Jul 2012 18:53:29 +0400	[thread overview]
Message-ID: <4FF458E9.8010107@samsung.com> (raw)
In-Reply-To: <CAOZVR5aHgtwBc2+JiMT+v7WucEi8_6GtVa6_hZsvRdwx17OUKA@mail.gmail.com>

04.07.2012 18:14, Dunrong Huang пишет:
>>
>>>> +
>>>> +static void exynos4210_cmu_set_pll(void *opaque, Exynos4210ClockState
>>>> *pll)
>>>> +{
>>>> +    Exynos4210CmuState *s = opaque;
>>>> +    Exynos4210ClockState *source;
>>>> +    target_phys_addr_t offset = pll->div_reg;
>>>> +    ClockChangeEntry *cce;
>>>> +    uint32_t pdiv, mdiv, sdiv, enable;
>>>> +
>>>> +    source = exynos4210_clock_find(pll->src_id);
>>>> +
>>>> +    if (source == NULL) {
>>>> +        hw_error("We haven't find source clock %d (requested for %s)\n",
>>>> +                 pll->src_id, pll->name);
>>>> +    }
>>>> +
>>>> +    /*
>>>> +     * FOUT = MDIV * FIN / (PDIV * 2^(SDIV-1))
>>>> +     */
>>>> +
>>>> +    enable = (s->reg[I_(offset)]&   PLL_ENABLE_MASK)>>   PLL_ENABLE_SHIFT;
>>>> +    mdiv   = (s->reg[I_(offset)]&   PLL_MDIV_MASK)>>   PLL_MDIV_SHIFT;
>>>> +    pdiv   = (s->reg[I_(offset)]&   PLL_PDIV_MASK)>>   PLL_PDIV_SHIFT;
>>>> +    sdiv   = (s->reg[I_(offset)]&   PLL_SDIV_MASK)>>   PLL_SDIV_SHIFT;
>>>> +
>>>> +    if (source) {
>>>> +        if (enable) {
>>>> +            pll->rate = mdiv * source->rate / (pdiv * (1<<   (sdiv-1)));
>>>> +        } else {
>>>> +            pll->rate = 0;
>>>> +        }
>>>> +    } else {
>>>> +        hw_error("%s: Source undefined for %s\n", __func__, pll->name);
>>>> +    }
>>>> +
>>>> +    QTAILQ_FOREACH(cce,&pll->clock_change_handler, entry) {
>>>>
>>>> +        cce->func(cce->opaque);
>>>> +    }
>>>> +
>>>> +    PRINT_DEBUG("%s rate: %llu\n", pll->name, pll->rate);
>>>
>>> pll->rate is of type uint64_t incompatible with "%llu"
>>
>>
>> Type uint64_t is included from /usr/include/stdint.h as
>>
>> typedef unsigned long long int  uint64_t;
>  From  /usr/include/stdint.h ,the uint64_t is defined by:
> #if __WORDSIZE == 64
> typedef unsigned long int	uint64_t;
> #else
> __extension__
> typedef unsigned long long int	uint64_t;
> #endif
> On my machine(64 bit), there will be a incompatibility error.

Yes, I have understood now. I don't use neither 64 bit system nor 
compiler and have not ever faced with this problem. Thanks for remarks

>
> As Peter said, you should use PRIu64 instead of llu
>>
>> and 'll' specifies that a following 'u' conversion specifier applies to a
>> unsigned long long argument
>>
>> Why do you think they incompatible?
>>
>>
>> --
>> MK
>
>
>

  reply	other threads:[~2012-07-04 14:53 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-04  9:21 [Qemu-devel] [PATCH v3 0/2] ARM: Samsung Exynos4210 CMU support Maksim Kozlov
2012-07-04  9:22 ` [Qemu-devel] [PATCH v3 1/2] ARM: exynos4210: " Maksim Kozlov
2012-07-04 10:38   ` Dunrong Huang
2012-07-04 13:45     ` Maksim Kozlov
2012-07-04 13:54       ` Peter Maydell
2012-07-04 14:12         ` Maksim Kozlov
2012-07-04 14:14       ` Dunrong Huang
2012-07-04 14:53         ` Maksim Kozlov [this message]
2012-07-04  9:22 ` [Qemu-devel] [PATCH v3 2/2] exynos4210: UART: Added using of CMU-callback functionality Maksim Kozlov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FF458E9.8010107@samsung.com \
    --to=m.kozlov@samsung.com \
    --cc=kyungmin.park@samsung.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.